Advertisement
foryou97

dangnhap.html

Oct 9th, 2018
149
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 0.67 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4.     <meta charset="UTF-8">
  5.     <title>Welcome and Login !</title> 
  6. </head>
  7. <body>
  8.     <h2>WELCOME TO MY WEBSITE !</h2>
  9.     <form action="logincheck.php" method="POST">
  10.         <fieldset>
  11.             <legend>Login Section</legend>
  12.             <label for="user_name">Username</label>
  13.             <input type="text" name="username" id="user_name">
  14.             <br><br>           
  15.             <label for="pass_word">Password</label>
  16.             <input type="password" name="password" id="pass_word">
  17.             <br><br>
  18.             <input type="submit" id="login" value="Login">
  19.             <input type="button" id="cancel" value="Cancel">
  20.         </fieldset>
  21.     </form>
  22.     <!-- <a href="logincheck.php">Click me !</a> -->
  23. </body>
  24. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement