-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
70 lines (68 loc) · 2.28 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
<!DOCTYPE html>
<html lang="en" >
<head>
<meta charset="UTF-8">
<title>Petite Hero | Login</title>
<link rel="icon" type="image/png" href="petitehero/img/logo.png"/>
<link rel="icon" type="image/png" href="petitehero/img/logo.png"/>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/meyer-reset/2.0/reset.min.css">
<link rel='stylesheet' href='https://fonts.googleapis.com/css?family=Roboto:400,100,300,500,700,900|RobotoDraft:400,100,300,500,700,900'>
<link rel='stylesheet' href='https://maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css'>
<link rel="stylesheet" href="petitehero/css/login.css">
</head>
<body>
<!-- partial:index.partial.html -->
<!-- Mixins-->
<!-- Pen Title-->
<div class="pen-title">
<h1>Petite Hero</h1>
<img src="petitehero/img/logo.png" style="width: 120px; border-radius: 50%;" alt="Petite Hero Logo">
</div>
<div class="rerun"></div>
<div class="container">
<div class="card"></div>
<div class="card">
<h1 class="title">Login</h1>
<form>
<div class="input-container">
<input type="text" id="username" required="required"/>
<label>Username</label>
<div class="bar"></div>
</div>
<div class="input-container">
<input type="password" id="password" required="required"/>
<label>Password</label>
<div class="bar"></div>
</div>
<div class="button-container">
<button type="button" onclick="login()"><span>Sign In</span></button>
</div>
<div class="footer"></div>
</form>
</div>
<div class="card alt" style="height: 100%">
<div class="toggle" id="wrong"></div>
<h1 class="title">Petite Hero
<div class="close"></div>
</h1>
<form>
<div class="input-container">
<input id="firstMsg" disabled/>
<label ></label>
<div class="bar"></div>
</div><div class="input-container">
<input id="secondMsg" disabled/>
</div>
</form>
</div>
</div>
<script src='https://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js'></script>
<script src="petitehero/js/constants.js"></script>
<script src="petitehero/js/login.js"></script>
<script>
$('.close').on('click', function() {
$('.container').stop().removeClass('active');
});
</script>
</body>
</html>