Advertisement
Guest User

Untitled

a guest
Oct 18th, 2019
103
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.28 KB | None | 0 0
  1. <Rejestracja>
  2. <form action="rejestracja.php" method="post" autocomplete="off">
  3. <div class="row">
  4. <label for="nick">Nazwa użytkownika</label>
  5. <input id="nick" type="text" required autofocus="true">
  6. </div>
  7.  
  8. <div class="row">
  9. <label for="Email">Email</label>
  10. <input id="Email" type="email" required>
  11. </div>
  12.  
  13. <div class="row">
  14. <label for="haslo">Hasło</label>
  15. <input id="haslo" type="password" required>
  16. </div>
  17. <div class="row">
  18. <label for="data">Data urodzenia</label>
  19. <input id="data" type="date" >
  20. </div>
  21. <div class="row">
  22. <label for="plec">Płeć</label>
  23. <select id="plec">
  24. <option>Mężczyzna</option>
  25. <option>Kobieta</option>
  26. </select>
  27. </div>
  28. <div class="row">
  29. <input id="regulamin" type="checkbox" required >
  30. <span>Akceptuję regulamin</span>
  31. </div>
  32. <div class="row">
  33. <input type="submit" value="Zarejestruj">
  34. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement