-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
77 lines (66 loc) · 3.2 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
<?php
echo "
<html>
<head>
<style>
ul li{
float:left;
padding:10px 20px 10px 20px;
background:#95A5A6;
color:white;
font-family:sans-serif;
font-weight:bold;
}
ul li:hover {
background:#E74C3C;
}
a {
text-decoration:none;
}
#butt {
background:#2C3E50;
color:white;
}
#butt:hover {
background:#34495E;
color:white;
}
</style>
</head>
<body>
<!-- ----------------------------- BACKGROUND IMAGE --------------------------------------------------- -->
<img src='pics/bg.jpg' width='100%' height='100%' style='position:absolute;top:0px;left:0px;'>
<!-- -------------------------------------------------------------------------------------------------- -->
<!-- ----------------------------- HEADER DIV --------------------------------------------------- -->
<div style='position:absolute;top:0px;left:0px;background:#34495E;width:100%;height:18%;'></div>
<!-- -------------------------------------------------------------------------------------------------- -->
<!-- ----------------------------- LOGO --------------------------------------------------- -->
<img src='pics/kwiz.png' width='7%' height='14%' style='position:absolute;top:2%;left:20%;'>
<!-- -------------------------------------------------------------------------------------------------- -->
<!-- ----------------------------- HEAD LINE --------------------------------------------------- -->
<font style='font-family:calibri;position:absolute;top:2%;right:30%;font-size:60px;font-weight:bold;color:white;'>Welcome To Kwiz
</font>
<!-- -------------------------------------------------------------------------------------------------- -->
<!-- ----------------------------- NAV --------------------------------------------------- -->
<ul style='position:absolute;top:4%;right:5%;'>
<a href='http://www.jaxon.gq'><li>About Me</li></a>
</ul>
<!-- -------------------------------------------------------------------------------------------------- -->
<!-- ----------------------------- FOOTER DIV --------------------------------------------------- -->
<div style='position:absolute;bottom:9px;left:0px;background:#ECF0F1;width:100%;height:5%;'>
<font style='font-family:calibri;font-size:25px;font-weight:bold;color:#2C3E50;float:right;'>Made with Love and coffee By Jackson.N        
</font>
</div>
<!-- -------------------------------------------------------------------------------------------------- -->
<!-- ----------------------------- LOGIN DIV --------------------------------------------------- -->
<img src='pics/loginpc.png' width='40%' height='60%' style='position:absolute;bottom:43px;right:10%;'>
<form action='logproc.php' method='post'>
<input type='text' name='usr' style='position:absolute;bottom:350px;right:18%;font-size:20px;width:250px;' autofocus tabindex='1' placeholder='Player NAme'>
<input type='text' name='pass' style='position:absolute;bottom:300px;right:18%;font-size:20px;width:250px;' tabindex='2' placeholder='Game Password'>
<input id='butt' type='submit' style='position:absolute;bottom:230px;right:18%;font-size:20px;width:250px;height:40px;border:none;' value='Lets Begin'>
</form>
<!-- -------------------------------------------------------------------------------------------------- -->
</body>
</html>
";
?>