-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
78 lines (55 loc) · 2.68 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
<!DOCTYPE html>
<html lang="en" class="body-error"><head>
<meta charset="utf-8">
<title>Night Sky - Login</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="">
<meta name="author" content="">
<!-- Le styles -->
<link href="css/login.css" rel="stylesheet">
<link href="css/bootstrap.css" rel="stylesheet">
<link rel="stylesheet" href="css/icon/font-awesome.css">
<link rel="stylesheet" href="css/bootstrap-responsive.css">
<!-- Le HTML5 shim, for IE6-8 support of HTML5 elements -->
<!--[if lt IE 9]>
<script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<!-- Le fav and touch icons -->
<link rel="shortcut icon" href="/images/icons/favicon.ico">
</head>
<body>
<div id="wrapper">
<img src="images/roadie_logo.png" alt="blah" class="logoroadie"/>
<div id="login" class="animate form position">
<form action="dashboard.html" class="form-login">
<div class="content-login">
<div class="header">Account Login</div>
<div class="inputs">
<input name="" type="text" placeholder="Username" />
<input name="" type="password" placeholder="Password" />
</div>
<div class="link-1"><a href="#">Create New Account</a></div>
<div class="link-2"><a href="#">Forgot Password?</a></div>
<div class="clear"></div>
<div class="button-login"><input type="submit" class="" value="Sign In"></div>
</div>
<div class="footer-login">
<div class="pull-left">Sing In With</div>
<div class="pull-right">
<ul class="social-links">
<li class="facebook"><a href="#"><span>facebook</span></a></li>
<li class="twitter"><a href="#"><span>twitter</span></a></li>
<li class="google-plus"><a href="#"><span>google</span></a></li>
</ul>
</div>
<div class="clear"></div>
</div>
</form>
</div>
</div>
<!-- Le javascript
================================================== -->
<!-- Placed at the end of the document so the pages load faster -->
<script src="js/jquery.min.js"></script>
</body>
</html>