Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php
- // Initialize the session
- session_start();
- // Check if the user is logged in, if not then redirect him to login page
- if(!isset($_SESSION["loggedin"]) || $_SESSION["loggedin"] !== true){
- header("location: login.php");
- exit;
- }
- ?>
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta http-equiv="X-UA-Compatible" content="IE=edge">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <meta name="keywords" content="HTML, CSS, tutorial, free">
- <meta name="author" content="codedskills">
- <meta name="description" content="Learn HTML step by step">
- <meta charset="UTF-8">
- <meta charset="UTF-8">
- <title>Welcome</title>
- <link rel="stylesheet" href="https://codedskills.net/learn_css/css_stylesheets/s1_css.css">
- </head>
- <body>
- <h3 class="my-5"><f style="color:rgb(247, 227, 0)">You are logged in as: <b><?php echo htmlspecialchars($_SESSION["username"]); ?></b></h3>
- <p>
- <h1 style="color:red">UNDER CONSTRUCTION</h1>
- <a href="reset-password.php" class="btn btn-warning"><f style="color:rgb(247, 227, 0)">____________Reset Your Password____________</a>
- <a href="logout.php" class="btn btn-danger ml-3"><f style="color:rgb(247, 227, 0)">____________Sign Out of Your Account____________</a>
- </p>
- <h1><a href="https://codedskills.org/welcome.php" target=_blank><f style="color:lime">_-_-_-_-_-CodedSkills.org-_-_-_-_-_</h1></a>
- <h1 style="color:silver">.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.</ins></h1>
- <center><iframe allowtransparency="true" style="background-color: lightblue;" src="https://codedskills.net/learn_css/css_external.txt" width="700" height="400"></iframe></center>
- <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>
- <center><li><h1><a href="https://codedskills.org/learn_css.php" ><f style="color:aqua"> <<---Back to CSS page 1</a></li></BODY></center>
- <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>
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement