Advertisement
teknojul

Kode HTML

Feb 7th, 2019
513
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.50 KB | None | 0 0
  1. <html>
  2.     <head>
  3.         <title>My first PHP Website</title>
  4.     </head>
  5.     <body>
  6.         <h2>Login Page</h2>
  7.         <a href="index.php">Click here to go back<br/><br/>
  8.         <form action="checklogin.php" method="POST">
  9.            Enter Username: <input type="text" name="username" required="required" /> <br/>
  10.            Enter password: <input type="password" name="password" required="required" /> <br/>
  11.            <input type="submit" value="Login"/>
  12.         </form>
  13.     </body>
  14. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement