Advertisement
adaxx11

Untitled

Apr 16th, 2020
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.59 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="pl">
  3. <head>
  4. <title>Formularze</title>
  5. <meta charset="utf-8">
  6. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  7. <meta name="viewport" content="width=device-width, initial-scale=1">
  8.  
  9. <!-- import the webpage's stylesheet -->
  10. <link rel="stylesheet" href="/style.css">
  11.  
  12. <!-- import the webpage's javascript file -->
  13. <script src="/script.js" defer></script>
  14. </head>
  15. <body>
  16.  
  17. <form>
  18.  
  19. <fieldset>
  20.  
  21. <legend>
  22. Logowanie
  23. </legend>
  24.  
  25. <label>Login:*</label>
  26. <br>
  27. <input type="text" name="login" maxlength="5" required placeholder="podaj login">
  28. <br>
  29. <label>Hasło:*</label>
  30. <br>
  31. <input type="password" name="pass" required placeholder="podaj hasło">
  32.  
  33. <br>
  34.  
  35. <input type="submit" value="Zaloguj">
  36.  
  37. <input type="reset">
  38.  
  39. </fieldset>
  40.  
  41.  
  42. </form>
  43.  
  44. <h3>
  45. Przykłady
  46. </h3>
  47. <input type="email" name="email">
  48. <br>
  49. <input type="date" name="data">
  50. <br>
  51. <input type="radio" name="plec">Kobieta
  52. <br>
  53. <input type="radio" name="plec">Mężczyzna
  54. <br>
  55. <input type="checkbox" name="regulamin">Czy akceptujesz <a href="regulamin.html">regulamin</a>?
  56.  
  57. <textarea rows="10" cols="30">
  58. Uwagi
  59. </textarea>
  60.  
  61.  
  62. <input type="file" name="plik">
  63.  
  64.  
  65.  
  66. <form>
  67.  
  68.  
  69.  
  70.  
  71. </form>
  72.  
  73.  
  74.  
  75. </body>
  76. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement