-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathindex.php
70 lines (41 loc) · 1.67 KB
/
index.php
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
<!DOCTYPE html>
<html>
<head>
<title>EventsWave</title>
<link rel="icon" href="assets/images/event_accepted_50px.png" type="image/icon type">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Raleway">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.15.2/css/all.css" />
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700;900&display=swap" />
<link rel="stylesheet" href="assets/bootstrap/css/bootstrap-login-form.min.css" />
<style>
body,h1
{
font-family: "Raleway", sans-serif
}
body, html
{
height: 100%
}
.bgimg
{
background-image: url('assets/images/login_request/cover.png');
min-height: 100%;
background-position: center;
background-size: cover;
}
</style>
</head>
<body>
<div class="bgimg w3-display-container w3-animate-opacity w3-text-white">
<div class="w3-display-middle">
<h1 class="w3-jumbo w3-animate-top"><img class="mb-4" src="assets/images/login_request/small_logo.png" alt="" height="55"></h1>
<hr class="w3-border-grey" style="margin:auto;width:40%">
<p class="w3-large w3-center">Events with Elegance</p>
<p class="w3-large w3-center"><a href="selection_page.php"><button type="button" class="btn btn-outline-light" data-mdb-ripple-color="dark">Get Started</button></a></p>
</div>
</div>
</body>
</html>