Advertisement
Guest User

Untitled

a guest
Jul 14th, 2016
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.03 KB | None | 0 0
  1. <?php session_start(); ?>
  2. <!DOCTYPE html>
  3.  
  4. <link rel="stylesheet" type="text/css" href="stylesheet.css">
  5. <title>Log in</title>
  6. <body>
  7. <section class="common">
  8. <header>
  9. <img src="resources/header.png" alt="Sqeaking Duck"/>
  10. </header>
  11.  
  12. <aside class="menu">
  13. <h3>Guest</h3>
  14. <hr>
  15. <nav>
  16. <ul>
  17. <li><a href="home.php">Home</a></li>
  18. <li><a href="login.php">Log in</a></li>
  19. <li><a href="register.php">Register</a></li>
  20. </ul>
  21. </nav>
  22. </aside>
  23. </section>
  24. <section class="login">
  25. <form action="loginManager.php" method="post">
  26. <fieldset>
  27. <legend>Log in</legend>
  28. User: <input type="text" name="username" value="">
  29. <span class="error"><?php echo isset($_SESSION['state']) ? $_SESSION['userErr'] : '';?></span><br>
  30. Password: <input type="password" name="password" value="">
  31. <span class="error"><?php echo isset($_SESSION['state']) ? $_SESSION['passErr'] : '';?></span><br>
  32. <input type="submit" name="submit" value="Submit">
  33. </fieldset>
  34. </form>
  35. <p><span class="error"><?php echo isset($_SESSION['state']) ? $_SESSION['generalErr'] : '';?></span></p>
  36. </section>
  37. </body>
  38.  
  39. /*Common pages */
  40. .common {
  41. z-index: 1;
  42. margin-top: 10px;
  43. position: fixed;
  44. width: 100%;
  45. }
  46.  
  47. header {
  48. width: 100%;
  49. text-align: center;
  50. background-color: CornflowerBlue;
  51. }
  52.  
  53. .menu {
  54. margin-top: 25px;
  55. width: 80px;
  56. background-color: black;
  57. text-align: center;
  58. }
  59.  
  60. .menu h3 {
  61. color: white;
  62. display: inline-block;
  63. margin: 0;
  64. padding-top: 5px;
  65. }
  66.  
  67. .menu hr {border-color: white;}
  68.  
  69. .menu nav {
  70. display: inline-block;
  71. text-align: left;
  72. width: 100%
  73. }
  74.  
  75. .menu ul {
  76. list-style: none;
  77. padding: 0px 0px 0px 10px;
  78. margin: 0;
  79. }
  80.  
  81. .menu li {
  82. padding-bottom: 10px;
  83. }
  84.  
  85. .menu a {
  86. text-decoration: none;
  87. color: white;
  88. }
  89.  
  90. /*Log in page*/
  91. .login {
  92. text-align: center;
  93. z-index: 0;
  94. margin-top: 300px;
  95. }
  96.  
  97. /*General*/
  98. body {
  99. background-color: grey;
  100. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement