Advertisement
Guest User

Untitled

a guest
Jan 18th, 2020
117
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.21 KB | None | 0 0
  1. <!HTML DOCTYPE>
  2. <html lang="pl">
  3. <head>
  4. <meta charset="utf-8">
  5. <title>Sklep muzyczny</title>
  6. <link rel="stylesheet" href="muzyka.css">
  7. </head>
  8. <body>
  9. <div id="container">
  10.  
  11. <div id="baner">
  12. <h1>SKLEP MUZYCZNY</h1>
  13. </div>
  14.  
  15. <div id="lewy">
  16.  
  17. <h2>NASZA OFERTA</h2>
  18. <ol>
  19. <li>Instrumenty muzyczne</li>
  20. <li>Sprzęt audio</li>
  21. <li>Płyty CD</li>
  22.  
  23. </ol>
  24.  
  25. </div>
  26.  
  27. <div id="prawy">
  28. <h2>FORMULARZ REJESTRACYJNY</h2>
  29. <form action="formularz.php" action="post">
  30. <p><b>Dane osobowe</b></p>
  31. <label>
  32. Imie:<br><input type="text" name="imie">
  33. </label><br>
  34. <label>
  35. Nazwisko:<br><input type="text" name="nazwisko">
  36. </label><br>
  37. <label>
  38. Adres:<br><input type="text" name="adres">
  39. </label><br>
  40. <label>
  41. Telefon:<br><input type="text" name="telefon">
  42. </label><br>
  43. <hr>
  44. <p><b>Dane logowania</b></p>
  45. <label>
  46. Login:<br><input type="text" name="login">
  47. </label><br>
  48. <label>
  49. Hasło:<br><input type="password" name="haslo">
  50. </label><br>
  51. <label><input type="checkbox" checked >Akceptuje <a href="regulamin.txt" target="_blank">regulamin</a> sklepu</label><br><br>
  52.  
  53. <input type= "reset" value="RESET"><input type="submit" value="REJESTRUJ">
  54.  
  55. </form>
  56.  
  57. </div>
  58. <div id="clear"></div>
  59.  
  60. </div>
  61.  
  62.  
  63.  
  64. </body>
  65. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement