Advertisement
pgeeweb

16.11 - register form

Nov 16th, 2016
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 1.46 KB | None | 0 0
  1. <!doctype html>
  2. <html>
  3.     <head>
  4.         <title>Register form</title>
  5.  
  6.         <link href="https://fonts.googleapis.com/css?family=Open+Sans&amp;subset=cyrillic,cyrillic-ext" rel="stylesheet">
  7.  
  8.         <style type="text/css">
  9.             body {
  10.                 font-family: 'Open Sans', sans-serif;
  11.             }
  12.             .form-group {
  13.                 margin-bottom: 10px;
  14.             }
  15.             label {
  16.                 display: inline-block;
  17.                 width: 30%;
  18.             }
  19.  
  20.             input[type="text"], input[type="email"], input[type="password"] {
  21.                 width: 60%;
  22.                 border: 1px solid #000000;
  23.                 padding: 3px 5px;
  24.                 background: #f2fcff;
  25.                 box-shadow: 1px 1px 2px green;
  26.             }
  27.  
  28.             input[type="submit"] {
  29.                 width: 150px;
  30.                 background: #009dbc;
  31.                 border: 0;
  32.                 height: 30px;
  33.                 color: #fff;
  34.                 font-weight: bold;
  35.             }
  36.         </style>
  37.     </head>
  38.     <body>
  39.         <form method="post">
  40.             <div class="form-group">
  41.                 <label>Username</label>
  42.                 <input type="text" name="username">
  43.             </div>
  44.             <div class="form-group">
  45.                 <label>Email</label>
  46.                 <input type="email" name="email">
  47.             </div>
  48.             <div class="form-group">
  49.                 <label>Name</label>
  50.                 <input type="text" name="name">
  51.             </div>
  52.             <div class="form-group">
  53.                 <label>Password</label>
  54.                 <input type="password" name="password">
  55.             </div>
  56.             <div class="form-group">
  57.                 <label>Confirm Password</label>
  58.                 <input type="password" name="confirm_password">
  59.             </div>
  60.             <div class="form-group">
  61.                 <input type="submit" name="send" value="zdr server">
  62.             </div>
  63.         </form>
  64.     </body>
  65. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement