-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsplash.php
More file actions
65 lines (56 loc) · 1.44 KB
/
splash.php
File metadata and controls
65 lines (56 loc) · 1.44 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
<!DOCTYPE html>
<html lang = "en">
<head>
<meta charset="UTF-8">
<meta name ="viewport" content="width=device-width, initial-scale=1.0">
<title>Splash Screen</title>
<style>
@font-face {
font-family: 'Poppins';
src: url(assets/Poppins/Poppins-Bold.ttf);
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body, html {
height: 100%;
font-family: 'Poppins', sans-serif;
}
.splash-container {
display: flex;
align-items: center;
justify-content: center;
height: 100%;
background-color: #3f0070;
}
.splash-content {
text-align: center;
color: #fff;
}
.splash-content h1 {
font-size: 48px;
}
.splash-content p {
font-size: 18px;
}
</style>
<!-- Redirect to the next page after 3 seconds -->
<script>
setTimeout(function(){
window.location.href = 'login.php';
}, 3000);
</script>
</head>
<!-- Contains logo and title -->
<body>
<div class="splash-container">
<div class="splash-content">
<img src="assets/Southside.png" alt="Logo" width="150">
<h1>Post Proper Southside</h1>
</div>
</div>
</head>
</body>
</html>