Advertisement
BrickTeslaYT

Login form script

Sep 14th, 2019
201
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.76 KB | None | 0 0
  1. <form action="action_page.php">
  2.   <div class="imgcontainer">
  3.     <img src="img_avatar2.png" alt="Avatar" class="avatar">
  4.   </div>
  5.  
  6.   <div class="container">
  7.     <label for="uname"><b>Username</b></label>
  8.     <input type="text" placeholder="Enter Username" name="uname" required>
  9.  
  10.     <label for="psw"><b>Password</b></label>
  11.     <input type="password" placeholder="Enter Password" name="psw" required>
  12.  
  13.     <button type="submit">Login</button>
  14.     <label>
  15.       <input type="checkbox" checked="checked" name="remember"> Remember me
  16.     </label>
  17.   </div>
  18.  
  19.   <div class="container" style="background-color:#f1f1f1">
  20.     <button type="button" class="cancelbtn">Cancel</button>
  21.     <span class="psw">Forgot <a href="#">password?</a></span>
  22.   </div>
  23. </form>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement