Advertisement
Guest User

Untitled

a guest
Sep 13th, 2019
115
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 1.04 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4.     <meta charset="UTF-8">
  5.     <title>Register Form</title>
  6.     <link rel="stylesheet" href="eventsstyle.css">
  7. </head>
  8. <body>
  9.     <form action="" class="ui-form">
  10.         <h3>Зарегистрировать мероприятие</h3>
  11.         <div class="form-row">
  12.             <input type="text" id="email" required autocomplete="off"><label for="email">Email</label>
  13.         </div><div class="form-row">
  14.         <input type="text" id="Name" required autocomplete="off"><label for="Name">Название мероприятия</label>
  15.     </div>
  16.         <div class="form-row">
  17.             <input type="number" id="score" required autocomplete="off"><label for="score">Количество баллов</label>
  18.         </div>
  19.         <div class="form-row">
  20.             <input type="text" id="Descryption" required autocomplete="off"><label for="Descryption">Описание</label>
  21.         </div>
  22.         <p><input type="submit" value="Зарегистрировать"></p>
  23.     </form>
  24. </body>
  25. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement