-
Notifications
You must be signed in to change notification settings - Fork 0
/
Index.php
92 lines (83 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
<!DOCTYPE html>
<html>
<!--
This is the first page you see after launch.
It is a welcome page.
-->
<head>
<style>
body,
html {
height: 100%;
margin: 0;
}
.bgIMG {
background-image: url('image/office_2.jpg');
height: 100%;
background-position: center;
background-size: cover;
position: relative;
color: white;
font-family: Cambay;
font-size: 25px;
}
.topLeft {
position: absolute;
top: 0;
left: 13px;
}
.bottomLeft {
position: absolute;
bottom: 0;
left: 13px;
}
.middle {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
text-align: center;
}
hr {
width: 62%;
}
button {
background-color: #35b6db;
color: white;
padding: 13px 21px;
margin: 34px 0;
border: none;
border-radius: 34px;
cursor: pointer;
min-width: 135px;
width: 15%;
font-size: 21px;
}
button:hover {
background-color: black;
color: #48c7ec;
}
</style>
</head>
<body>
<!-- Back ground image; Source is folder /Image -->
<div class="bgIMG">
<!-- The middle of the page. -->
<div class="middle">
<div>
<!-- The logo located in the center of the page. -->
<img src="image/logo3.PNG" style="width: 500px;">
<hr>
<!-- Login button -->
<button type="toLoginBTN" onclick="btn_login()">Login</button>
</div>
</div>
</div>
</body>
<!-- JS for page redirection for login button. -->
<script>
function btn_login() {
window.location.href = "Login_Page.php";
}
</script>
</html>