Skip to content
GitLab
Menu
Projects
Groups
Snippets
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Stefan Krsteski
ChallengePHP
Commits
c8404098
Commit
c8404098
authored
1 year ago
by
Stefan Krsteski
Browse files
Options
Download
Email Patches
Plain Diff
Upload New File
parent
6175ddac
main
ch
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
welcomepage.php
+39
-0
welcomepage.php
with
39 additions
and
0 deletions
+39
-0
welcomepage.php
0 → 100644
+
39
-
0
View file @
c8404098
<?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
This diff is collapsed.
Click to expand it.
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment
Menu
Projects
Groups
Snippets