Untitled
plain_text
22 days ago
661 B
2
Indexable
Never
<html> <head> <meta charset="utf-8"> <style> form{width:60%;} </style> </head> <body> <form action="obsluzformularz.php" method="post"> <fieldset> <legend> wprowadz dane</legend> <input type="text" name="imie"> <label for="imie">Wprowadz imie</label> <input type="number" name="wiek"> <label for="wiek"> wprowadz wiek</label> <input type="password" name="haslo"> <label for="haslo">wpisz haslo</label> <input type="color" name="kolor"> <label for="kolor"> wybierz kolor </label> <input type="radio" name="plec" value="k"> Kobieta <input type="radio" name="plec" value="m"> Mężczyzna </fieldset> </form> </body> </html>