Advertisement
Guest User

Untitled

a guest
Jul 4th, 2017
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.12 KB | None | 0 0
  1. <html>
  2. <head>
  3. <link rel="stylesheet" href="../css/bootstrap.css">
  4. <link rel="stylesheet" href="../css/style.css">
  5. </head>
  6. <body>
  7. <div class="container ">
  8. <div class="row">
  9. <div class="input-form">
  10. <h2 align="center" style="padding-top: 10px;">Log In</h2>
  11. <form action="logincheck.php" method="post">
  12. <div class="form-group">
  13. <label class="label1">UserName</label>
  14. <input name="username" type="text" class="form-control" id="" placeholder="username">
  15. </div>
  16. <div class="form-group">
  17. <label class="label2">Password</label>
  18. <input name="password" type="password" class="form-control" id="" placeholder="********">
  19. </div>
  20. <input type="submit" name="submit" class="btn btn-default" value="LOG IN">
  21. <?php /*
  22. if($errormsg != ""){
  23. echo '<label class="label3 alert alert-danger">'.$errormsg.'</label>';
  24. } */
  25. ?>
  26. </form>
  27. </div>
  28. </div>
  29. </div>
  30.  
  31. <?php
  32. $username = $_POST['username'];
  33. $password = $_POST['password'];
  34. header("location : login.php");
  35. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement