forked from ljb-2000/theme
-
Notifications
You must be signed in to change notification settings - Fork 2
/
pages-sign-in.html
54 lines (49 loc) · 2.34 KB
/
pages-sign-in.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
<!doctype html>
<html class="no-js">
<head>
<!-- Meta, title, CSS, favicons, etc. -->
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>Veneto Admin · Sign In </title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width">
<!--<link rel="shortcut icon" href="/favicon.ico">-->
<!-- Place favicon.ico and apple-touch-icon.png in the root directory -->
<link rel="stylesheet" href="dist/css/bootstrap.min.css">
<link rel="stylesheet" href="dist/css/veneto-admin.min.css">
<link rel="stylesheet" href="demo/css/demo.css">
<link rel="stylesheet" href="dist/assets/font-awesome/css/font-awesome.css">
<!--[if lt IE 9]>
<script src="dist/assets/libs/html5shiv/html5shiv.min.js"></script>
<script src="dist/assets/libs/respond/respond.min.js"></script>
<![endif]-->
</head>
<body class="body-sign-in">
<div class="container">
<div class="panel panel-default form-container">
<div class="panel-body">
<form role="form">
<h3 class="text-center margin-xl-bottom">Welcome Back!</h3>
<div class="form-group text-center">
<label class="sr-only" for="email">Email Address</label>
<input type="email" class="form-control input-lg" id="email" placeholder="Email Address">
</div>
<div class="form-group text-center">
<label class="sr-only" for="password">Password</label>
<input type="password" class="form-control input-lg" id="password" placeholder="Password">
</div>
<a href="index.html" class="btn btn-primary btn-block btn-lg">SIGN IN</a>
</form>
</div>
<div class="panel-body text-center">
<div class="margin-bottom">
<a class="text-muted text-underline" href="javascript:;">Forgot Password?</a>
</div>
<div>
Don't have an account? <a class="text-primary-dark" href="pages-sign-up.html">Sign up here</a>
</div>
</div>
</div>
</div>
</body>
</html>