Advertisement
Guest User

Untitled

a guest
Sep 13th, 2019
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 0.73 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4.     <meta charset="UTF-8">
  5.     <title>Registration</title>
  6.     <link href="Reg.css" rel="stylesheet">
  7. </head>
  8. <body>
  9.     <form class="transparent">
  10.         <div class="form-inner">
  11.             <h3>Регистрация</h3>
  12.             <label for="username">Имя пользователя</label>
  13.             <input type="text" id="username">
  14.             <label for="password">Пароль</label>
  15.             <input id="password" type="password">
  16.             <input type="checkbox" id="custom-checkbox">
  17.             <label for="custom-checkbox">Запомнить меня</label>
  18.             <input type="submit" value="Отправить">
  19.         </div>
  20.     </form>
  21. </body>
  22. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement