Advertisement
c0d3dsk1lls

external

Jul 3rd, 2022
496
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 2.55 KB | None | 0 0
  1. <?php
  2. // Initialize the session
  3. session_start();
  4.  
  5. // Check if the user is logged in, if not then redirect him to login page
  6. if(!isset($_SESSION["loggedin"]) || $_SESSION["loggedin"] !== true){
  7.    header("location: login.php");
  8.    exit;
  9. }
  10. ?>
  11.  
  12. <!DOCTYPE html>
  13. <html lang="en">
  14. <head>
  15. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  16. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  17. <meta name="keywords" content="HTML, CSS, tutorial, free">
  18. <meta name="author" content="codedskills">
  19. <meta name="description" content="Learn HTML step by step">
  20. <meta charset="UTF-8">
  21. <meta charset="UTF-8">
  22.  
  23.                              <title>Welcome</title>
  24.  
  25.                              <link rel="stylesheet" href="https://codedskills.net/learn_css/css_stylesheets/s1_css.css">
  26.  
  27. </head>
  28. <body>
  29.  
  30. <h3 class="my-5"><f style="color:rgb(247, 227, 0)">You are logged in as: <b><?php echo htmlspecialchars($_SESSION["username"]); ?></b></h3>
  31. <p>
  32. <h1 style="color:red">UNDER CONSTRUCTION</h1>
  33. <a href="reset-password.php" class="btn btn-warning"><f style="color:rgb(247, 227, 0)">____________Reset Your Password____________</a>
  34. <a href="logout.php" class="btn btn-danger ml-3"><f style="color:rgb(247, 227, 0)">____________Sign Out of Your Account____________</a>
  35. </p>
  36. <h1><a href="https://codedskills.org/welcome.php" target=_blank><f style="color:lime">_-_-_-_-_-CodedSkills.org-_-_-_-_-_</h1></a>
  37.    <h1 style="color:silver">.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.</ins></h1>
  38.    
  39.    <center><iframe allowtransparency="true" style="background-color: lightblue;" src="https://codedskills.net/learn_css/css_external.txt" width="700" height="400"></iframe></center>
  40.  
  41.  
  42.    <center><li><h1><a href="https://codedskills.org/learn_css_inline.php" ><f style="color:crimson"> <----Back to CSS page 2</a></li></BODY></center>
  43.     <center><li><h1><a href="https://codedskills.org/learn_css.php" ><f style="color:aqua"> <<---Back to CSS page 1</a></li></BODY></center>
  44.     <center><p id="c1">This is a paragraph with a custom id...This is a paragraph with a custom id...This is a paragraph with a custom id...This is a paragraph with a custom id...This is a paragraph with a custom id...This is a paragraph with a custom id...This is a paragraph with a custom id...This is a paragraph with a custom id...This is a paragraph with a custom id...This is a paragraph with a custom id...This is a paragraph with a custom id...This is a paragraph with a custom id...</p></center>
  45.  
  46. </body>
  47. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement