Advertisement
Guest User

Untitled

a guest
Feb 19th, 2020
133
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.24 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en">
  3.  
  4. <head>
  5.     <meta charset="UTF-8">
  6.     <meta name="viewport" content="width=device-width, initial-scale=1.0">
  7.     <meta http-equiv="X-UA-Compatible" content="ie=edge">
  8.     <link rel="stylesheet" href="style.css">
  9.     <title>Project 1 | Form Validator</title>
  10. </head>
  11.  
  12. <body>
  13.     <div class="container">
  14.         <form class="form" id="form">
  15.             <h2>Register With Us</h2>
  16.             <div class="form-control success">
  17.                 <label for="username">Username</label>
  18.                 <input type="text" id="username" placeholder="Username">
  19.                 <small class="success">Error Message</small>
  20.             </div>
  21.  
  22.             <div class="form-control danger">
  23.                 <label for="email">E-mail</label>
  24.                 <input type="text" id="email" placeholder="E-mail">
  25.                 <small>Error Message</small>
  26.             </div>
  27.  
  28.             <div class="form-control">
  29.                 <label for="password">Password</label>
  30.                 <input type="password" id="password" placeholder="Password">
  31.                 <small>Error Message</small>
  32.             </div>
  33.  
  34.             <div class="form-control">
  35.                 <label for="password-confirm">Confirm Password</label>
  36.                 <input type="password" id="password-confirm" placeholder="Confirm Password">
  37.                 <small>Error Message</small>
  38.             </div>
  39.  
  40.             <button type="reset" id="clear">Clear Form</button>
  41.             <button>Submit</button>
  42.         </form>
  43.     </div>
  44. </body>
  45.  
  46. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement