forked from ljb-2000/theme
-
Notifications
You must be signed in to change notification settings - Fork 2
/
login.html
76 lines (63 loc) · 2.58 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
<!DOCTYPE html>
<html>
<head>
<title>Sugoi Admin</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Bootstrap -->
<link rel="stylesheet" href="css/admin.css">
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
<script src="https://oss.maxcdn.com/libs/respond.js/1.3.0/respond.min.js"></script>
<![endif]-->
<script src="js/lib/modernizr.js"></script>
</head>
<body class="backstretch">
<div class="block-absolute-center login-form">
<div class="text-center m-b-10">
<!-- <img src="http://placehold.it/200x90"> -->
<h2 class="text-white font-w-100">Sugoi Admin</h2>
</div>
<form role="form">
<div class="form-group">
<input type="user" class="form-control input-glass"
id="email" placeholder="Username">
</div>
<div class="form-group">
<input type="password" class="form-control input-glass"
id="pass" placeholder="Password">
</div>
<button type="submit" class="btn btn-primary btn-block btn-lg">Sign in</button>
</form>
<a href="signup.html" class="text-white hover-opacity-change hover-white-opacity-text m-t-10 d-block">Don't have an account yet?</a>
</div>
<script src="https://code.jquery.com/jquery.js"></script>
<script src="js/lib/backstretch.js"></script>
<script>
$(".backstretch").backstretch([
"backgrounds/wg_blurred_backgrounds_8.jpg",
"backgrounds/wg_blurred_backgrounds_5.jpg",
"backgrounds/wg_blurred_backgrounds_3.jpg",
"backgrounds/wg_blurred_backgrounds_1.jpg",
"backgrounds/wg_blurred_backgrounds_2.jpg",
"backgrounds/wg_blurred_backgrounds_4.jpg",
"backgrounds/wg_blurred_backgrounds_6.jpg",
"backgrounds/wg_blurred_backgrounds_7.jpg",
"backgrounds/wg_blurred_backgrounds_9.jpg",
], {
duration: 3000,
fade: 'slow'
});
</script>
<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-49617882-1', 'sugoi-admin-v104.herokuapp.com');
ga('send', 'pageview');
</script>
</body>
</html>