-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
62 lines (56 loc) · 2.43 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
<!DOCTYPE html>
<html>
<head>
<title>Expo Login</title>
<!-- JS Scripts -->
<script src="js/libraries/jquery-1.12.0.min.js"></script>
<script src="js/custom-scripts.js"></script>
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="css/libraries/bootstrap.min.css" type='text/css'>
<!-- Custom CSS -->
<link rel="stylesheet" href="css/custom.css" type='text/css'>
<!-- fontAwesome -->
<link rel="stylesheet" href="css/libraries/font-awesome-4.4.0/css/font-awesome.min.css" type='text/css'>
</head>
<body>
<!-- Page Content -->
<div class="container">
<div class="row">
<div class="col-xs-12 no-left-padding">
<!-- Button font changers. -->
<div class="control-buttons">
<button id="contrast-switch" type="button" class="btn btn-default"><i class="fa fa-adjust"></i></button>
<button id="increase" type="button" class="btn btn-default">A+</button>
<button id="decrease" type="button" class="btn btn-default">A-</button>
</div>
</div>
</div>
<div class="row">
<div class="col-xs-12 no-right-padding">
<h1 class="text-center">Welcome, Please Login</h1>
</div>
</div>
<div class="row">
<div class="col-xs-12">
<div class="auto-center">
<form class="text-center form-group">
<input type="text" name="username" placeholder="Username" class="form-control bottom-spacing">
<input type="password" name="password" placeholder="Password" class="form-control bottom-spacing">
<!-- Login -->
<a class="block-display" href="pages/home.html">
<button type="button" class="mobile-button-big btn btn-default" aria-label="Left Align">
<i class="fa fa-sign-in"></i>Login
</button>
</a>
<!-- Register -->
<a href="pages/register.html" title="Register"><button onclick="slide('left', 'orange', 1, '#sjaak?x=1')" type="button" class="mobile-button-big btn btn-default" aria-label="Left Align">
<i class="fa fa-user-plus"></i>Register
</button></a>
<a class="block-display" href="pages/home.html"><button type="button" class="mobile-button-big btn"><i class="fa fa-arrow-right"></i>Skip</button></a>
</form>
</div>
</div>
</div>
</div>
</body>
</html>