-
Notifications
You must be signed in to change notification settings - Fork 223
/
login.html
111 lines (95 loc) · 3.55 KB
/
login.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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>SuperheroAdmin - Bootstrap Admin Template</title>
<!-- bootstrap -->
<link href="css/bootstrap/bootstrap.css" rel="stylesheet" />
<!-- libraries -->
<link href="css/libs/font-awesome.css" type="text/css" rel="stylesheet" />
<!-- global styles -->
<link rel="stylesheet" type="text/css" href="css/compiled/layout.css">
<link rel="stylesheet" type="text/css" href="css/compiled/elements.css">
<!-- this page specific styles -->
<!-- google font libraries -->
<link href='http://fonts.googleapis.com/css?family=Open+Sans:400,600,700,300|Titillium+Web:200,300,400' rel='stylesheet' type='text/css'>
<!--[if lt IE 9]>
<script src="js/html5shiv.js"></script>
<script src="js/respond.min.js"></script>
<![endif]-->
<!--[if lt IE 8]>
<link href="css/libs/font-awesome-ie7.css" type="text/css" rel="stylesheet" />
<![endif]-->
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-49262924-1', 'phoonio.com');
ga('send', 'pageview');
</script>
</head>
<body id="login-page">
<div class="container">
<div class="row">
<div class="col-xs-12">
<div id="login-box">
<div class="row">
<div class="col-xs-12 clearfix" id="login-box-header">
<div class="login-box-header-red"></div>
<div class="login-box-header-green"></div>
<div class="login-box-header-yellow"></div>
<div class="login-box-header-purple"></div>
<div class="login-box-header-blue"></div>
<div class="login-box-header-gray"></div>
</div>
</div>
<div class="row">
<div class="col-xs-12">
<div id="login-box-inner">
<!-- <img src="img/logo-login.png" alt="SuperheroAdmin" class="img-responsive" id="login-logo"/> -->
<div id="login-logo">
<img src="img/logo-login.png" alt=""/> SuperheroAdmin
</div>
<form role="form" action="index.html">
<div class="input-group input-group-lg">
<span class="input-group-addon"><i class="fa fa-user"></i></span>
<input class="form-control" type="text" placeholder="Email address">
</div>
<div class="input-group input-group-lg">
<span class="input-group-addon"><i class="fa fa-key"></i></span>
<input type="password" class="form-control" placeholder="Password">
</div>
<div class="form-group">
<div class="checkbox">
<label>
<input type="checkbox"> Remember me
</label>
</div>
</div>
<div class="row">
<div class="col-sm-6 col-xs-12 col-sm-push-6">
<button type="submit" class="btn btn-success col-xs-12">Login</button>
</div>
<a href="#" id="login-forget-link" class="col-sm-6 col-xs-12 col-sm-pull-6">
Did you forget your password?
</a>
</div>
</form>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- global scripts -->
<script src="js/jquery.js"></script>
<script src="js/bootstrap.js"></script>
<!-- this page specific scripts -->
<!-- theme scripts -->
<script src="js/scripts.js"></script>
<!-- this page specific inline scripts -->
</body>
</html>