forked from ljb-2000/theme
-
Notifications
You must be signed in to change notification settings - Fork 0
/
signup.html
61 lines (53 loc) · 2.32 KB
/
signup.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
<!DOCTYPE html>
<html class="login-bg">
<head>
<title>Detail Admin - Sign up</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- bootstrap -->
<link href="css/bootstrap/bootstrap.css" rel="stylesheet" />
<link href="css/bootstrap/bootstrap-responsive.css" rel="stylesheet" />
<link href="css/bootstrap/bootstrap-overrides.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" />
<link rel="stylesheet" type="text/css" href="css/compiled/icons.css" />
<!-- libraries -->
<link rel="stylesheet" type="text/css" href="css/lib/font-awesome.css" />
<!-- this page specific styles -->
<link rel="stylesheet" href="css/compiled/signup.css" type="text/css" media="screen" />
<!-- open sans font -->
<link href='http://fonts.googleapis.com/css?family=Open+Sans:300italic,400italic,700italic,800italic,400,300,600,700,800' rel='stylesheet' type='text/css' />
<!--[if lt IE 9]>
<script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
</head>
<body>
<div class="header">
<a href="index.html">
<img src="img/logo.png" class="logo" alt="logo" />
</a>
</div>
<div class="login-wrapper">
<div class="box">
<div class="content-wrap">
<h6>Sign Up</h6>
<input class="form-control" type="text" placeholder="E-mail address">
<input class="form-control" type="password" placeholder="Password">
<input class="form-control" type="password" placeholder="Confirm Password">
<div class="action">
<a class="btn-glow primary signup" href="index.html">Sign up</a>
</div>
</div>
</div>
<div class="already">
<p>Already have an account?</p>
<a href="signin.html">Sign in</a>
</div>
</div>
<!-- scripts -->
<script src="http://code.jquery.com/jquery-latest.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="js/theme.js"></script>
</body>
</html>