-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.html
44 lines (40 loc) · 1.39 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>Seemple Example App (Login form)</title>
<link rel="stylesheet" type="text/css" href="
https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.0.0-alpha.4/css/bootstrap.css">
<style>
body {
padding-top: 5%;
}
</style>
</head>
<body>
<div class="container-fluid">
<div class="row">
<div class="col-md-4"></div>
<form class="col-md-4 login-form">
<div class="form-group">
<input type="text" class="user-name form-control" placeholder="Username">
</div>
<div class="form-group">
<input type="password" class="password form-control" placeholder="Password">
</div>
<div class="checkbox">
<label>
<input type="checkbox" class="show-password"> Show Password
</label>
</div>
<input type="submit" value="Sign In" class="btn btn-primary submit">
<label>
<input type="checkbox" placeholder="Password" class="remember-me"> Remember me
</label>
</form>
</div>
</div>
<script src="https://finom.github.io/seemple/seemple.min.js"></script>
<script src="js/app.js"></script>
</body>
</html>