Guest User

Untitled

a guest
Mar 15th, 2018
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.92 KB | None | 0 0
  1. <?php
  2. include "config.php";
  3. include "index.php";
  4. ?>
  5. <head>
  6. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  7. <title>System.</title>
  8. <link rel="stylesheet" href="style.css" type="text/css" />
  9. </head>
  10. <body>
  11. <div id="main">
  12. <?php
  13. if ($_SESSION['Loggedin'] = 1)
  14. {
  15. ?>
  16. <h1> Member Area </h1>
  17. <p> Thanks, for logging in, member: <?=$_SESSION['Username']?>
  18.  
  19.  
  20. <?php
  21. if(!empty($_SESSION['Loggedin']) && !empty($_SESSION['Username'])
  22.  
  23. ?>
  24. <form method="post" action="step2" name="createwarrant" id="creeatewarrant">
  25. <fieldset>
  26. <label for="username">Username:</label><input type="text" name="username" id="username" /><br />
  27. <label for="password">Password:</label><input type="password" name="password" id="password" /><br />
  28. <input type="submit" name="cwarrant" id="login" value="cwarrant" />
  29. </fieldset>
  30. </form>
  31. </div>
  32. </body>
  33. </html>
Add Comment
Please, Sign In to add comment