-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
78 lines (78 loc) · 3.4 KB
/
index.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="theme-color" content="#000000">
<link rel="icon" sizes="192x192" href="img/favicon.png">
<title>TheGrandMaster</title>
<link href='https://fonts.googleapis.com/css?family=Source+Sans+Pro:300' rel='stylesheet' type='text/css'>
<link href='https://fonts.googleapis.com/css?family=Roboto:300,500' rel='stylesheet' type='text/css'>
<script src="https://use.fontawesome.com/bdf85ecedd.js"></script>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" integrity="sha384-1q8mTJOASx8j1Au+a5WDVnPi2lkFfwwEAa8hDDdjZlpLegxhjVME1fgjWPGmkzs7" crossorigin="anonymous">
<link type="text/css" rel="stylesheet" href="css/common.css">
<link type="text/css" rel="stylesheet" href="css/index.css">
</head>
<body>
<div class="container">
<h1>TheGrandMaster v3.0</h1>
<div class="login">
<a href="javascript:void(0)">
<p>Log in to play</p>
</a>
</div>
</div>
<div class="footer">
<p>Made with <i class="fa fa-heart"></i> by Oana</p>
</div>
<div class="ontop">
<div id="register">
<header>
<h3>REGISTER</h3>
<p id="rMessage">Fill the fields below</p>
</header>
<div class="input">
<form action="php/add.php" method="post">
<input type="password" name="retype" placeholder="Repeat password"/>
<button type="submit" class="button">
<i class='fa fa-arrow-right'></i>
</button>
<input type="password" name="password" placeholder="Password"/>
<div class="button" onclick="next()">
<i class='fa fa-arrow-right'></i>
</div>
<input type="text" name="username" placeholder="Username"/>
<div class="button" onclick="next()">
<i class='fa fa-arrow-right'></i>
</div>
</form>
<a href="levels.php"><p>PLAY NOW</p></a>
</div>
</div>
<div id="login">
<header>
<h3>SIGN IN</h3>
<p id="lMessage">Don't have an account yet? Click here.</p>
</header>
<div class="input">
<form action="php/validateL.php" method="post">
<input type="password" name="password" placeholder="Password"/>
<button type="submit" class="button">
<i class='fa fa-arrow-right'></i>
</button>
<input type="text" placeholder="Username" name="username"/>
<div class="button" onclick="next()">
<i class='fa fa-arrow-right'></i>
</div>
</form>
<a href="levels.php"><p>PLAY NOW</p></a>
</div>
</div>
</div>
<script src="https://code.jquery.com/jquery-2.2.4.min.js" integrity="sha256-BbhdlvQf/xTY9gja0Dq3HiwQF8LaCRTXxZKRutelT44=" crossorigin="anonymous"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js" integrity="sha384-0mSbJDEHialfmuBBQP6A4Qrprq5OVfW37PRR3j5ELqxss1yVqOtnepnHVP9aJ7xS" crossorigin="anonymous"></script>
<script src="js/valid.js"></script>
<script src="js/index.js"></script>
</body>
</html>