-
Notifications
You must be signed in to change notification settings - Fork 4
/
index.html
46 lines (37 loc) · 1.76 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
<!DOCTYPE html>
<html>
<head>
<title>Let's Go</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Bootstrap -->
<link href="css/bootstrap.min.css" rel="stylesheet">
<link rel="stylesheet" href="css/font-awesome.min.css">
<link href="css/custom.css" rel="stylesheet">
</head>
<body>
<div class="container">
<!-- Begin form -->
<form class="form-signin">
<img class="img-responsive" src="img/logo.png" style="margin-top: 4px;">
<h2 class="form-signin-heading text-center">SIGN IN TO ENEZA</h2>
<!-- Begin inputs -->
<div class="input-group margin-bottom-sm">
<span class="input-group-addon"><i class="fa fa-envelope-o"></i></span>
<input id="val1" class="form-control" type="text" placeholder="Email address">
</div>
<div class="input-group">
<span class="input-group-addon"><i class="fa fa-key"></i></span>
<input id="val2" class="form-control" type="password" placeholder="Password">
</div>
<!-- Begin buttons -->
<a href="home.html" class="btn btn-lg btn-primary btn-block" type="submit">Login <i class="fa fa-arrow-circle-o-right"></i></a>
<a href="choose.html" class="btn btn-lg btn-info btn-block" type="submit">Sign up <i class="fa fa-arrow-circle-o-right"></i></a>
<!-- <button onclick='window.Android.sendData("api: {url: \"http://example.com\", data: {}, type: \"POST\"}");' class="btn btn-lg btn-info btn-block">Send data <i class="fa fa-arrow-circle-o-right"></i></button> -->
</form>
</div> <!-- /container -->
<!-- jQuery (necessary for Bootstrap's JavaScript plugins) -->
<script src="js/jquery.js"></script>
<!-- Include all compiled plugins (below), or include individual files as needed -->
<script src="js/bootstrap.min.js"></script>
</body>
</html>