Guest User

Untitled

a guest
Nov 12th, 2016
32
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.14 KB | None | 0 0
  1. <?php
  2.  
  3. //includes login script
  4. include( 'login.php' );
  5.  
  6. ?>
  7.  
  8. <!DOCTYPE html>
  9. <html>
  10. <head>
  11. <title>Connagh Muldoon - My Portfolio</title>
  12. <link rel="stylesheet" type="text/css" href="resources/stylesheet.css">
  13. </head>
  14.  
  15. <body>
  16. <div id="wrapper">
  17.  
  18.  
  19. <div id="loginbody">
  20. <div id="loginheader">
  21. LOG IN
  22. </div>
  23. <div id="loginform">
  24. <form action="" method="post">
  25.  
  26. <label>Username: </label>
  27. <input type="text" name="username" id="name" placeholder="username"/><br><br>
  28.  
  29. <label>Password: </label>
  30. <input type="text" name="username" id="password" placeholder="**********"/><br><br>
  31.  
  32. <input type="submit" value=" Login " name="submit"/><br>
  33.  
  34. <span><?php echo $error; ?></span>
  35.  
  36. </form>
  37. </div>
  38.  
  39. </div>
  40.  
  41.  
  42. </div>
  43. </body>
  44.  
  45. </html>
Add Comment
Please, Sign In to add comment