Commit c8404098 authored by Stefan Krsteski's avatar Stefan Krsteski
Browse files

Upload New File

parent 6175ddac
No related merge requests found
Showing with 39 additions and 0 deletions
+39 -0
<?php
require_once 'functions.php';
require_once 'users.txt';
?>
<!doctype html>
<html lang="en">
<head>
<title>Welcome</title>
<!-- Required meta tags -->
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" />
<!-- Bootstrap CSS v5.2.1 -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-T3c6CoIi6uLrA9TneNEoa7RxnatzjcDSCmG1MXxSR1GAsXEV/Dwwykc2MPK8M2HN" crossorigin="anonymous" />
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="background">
<div class="wrapper shadow-lg border border-light-subtle row justify-content-center align-items-center">
<div class=" text-white">
<?php
$username = isset($_GET['username']) ? htmlspecialchars($_GET['username']) : "";
?>
<h1 class="text-center welcome ">Welcome <?php echo $username; ?>, we are glad to have you on board!</h1>
</div>
</div>
</div>
<script src="https://cdn.jsdelivr.net/npm/@popperjs/core@2.11.8/dist/umd/popper.min.js" integrity="sha384-I7E8VVD/ismYTF4hNIPjVp/Zjvgyol6VFvRkX/vR+Vc4jQkC+hVqc2pM8ODewa9r" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/js/bootstrap.min.js" integrity="sha384-BBtl+eGJRgqQAUMxJ7pMwbEyER4l1g+O15P+16Ep7Q9Q+zqX6gSbd85u4mG4QzX+" crossorigin="anonymous"></script>
</body>
</html>
\ No newline at end of file
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment