-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwelcome.php
More file actions
85 lines (78 loc) · 1.89 KB
/
welcome.php
File metadata and controls
85 lines (78 loc) · 1.89 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
<?php
/**
* Created by PhpStorm.
* User: ATasker
* Date: 8/30/18
* Time: 12:08 PM
*/
include 'inc.php';
$message = $_GET['message'];
?>
<!DOCTYPE html>
<html>
<head>
<title>The Caravan</title>
<link href="https://fonts.googleapis.com/css?family=Muli:300,400,700" rel="stylesheet">
<style type="text/css">
body {
font-family: 'Muli', sans-serif;
}
.hero-text {
font-size: 2.4rem;
font-weight: bold;
letter-spacing: .1rem;
padding-bottom: 15px;
}
.welcome-message {
margin: 0 auto;
font-size: 1.5rem;
width: 50%;
font-weight: 300;
padding: 10px;
}
@media (max-width: 1000px) {
.center-inner {
left:25%;
top:25%;
position:absolute;
width:50%;
height:300px;
text-align:center;
max-width:500px;
max-height:500px;
}
}
@media (min-width: 1000px) {
.center {
left:50%;
top:25%;
position:absolute;
}
.center-inner {
width:500px;
height:100%;
margin-left:-250px;
height:300px;
text-align:center;
max-width:500px;
max-height:500px;
}
}
</style>
</head>
<body>
<div class="admin-link">
<a href="admin/adminUsers.php" style="text-decoration: none; color: #FFF; position: fixed; top: 0; right: 0;">Admin</a>
</div>
<div class="center">
<div class="center-inner">
<div class="hero-text">
The Caravan
</div>
<div class="welcome-message">
<?php echo $message; ?>
</div>
</div>
</div>
</body>
</html>