AdminLTE/pages/examples/login.html

57 lines
2.5 KiB
HTML
Raw Normal View History

2014-02-01 16:49:36 +01:00
<!DOCTYPE html>
<html class="bg-black">
2015-02-01 22:25:09 +01:00
<head>
<meta charset="UTF-8">
<title>AdminLTE 2 | Log in</title>
<meta content='width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no' name='viewport'>
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.1/css/bootstrap.min.css" rel="stylesheet" type="text/css" />
<link href="https://maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css" rel="stylesheet" type="text/css" />
<!-- Theme style -->
<link href="../../dist/css/AdminLTE.min.css" rel="stylesheet" type="text/css" />
2014-02-01 16:49:36 +01:00
2015-02-01 22:25:09 +01:00
<!-- 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]-->
</head>
<body class="bg-black">
<div class="form-box" id="login-box">
<div class="header">Sign In</div>
<form action="../../index.html" method="post">
<div class="body bg-gray">
<div class="form-group">
<input type="text" name="userid" class="form-control" placeholder="User ID"/>
</div>
<div class="form-group">
<input type="password" name="password" class="form-control" placeholder="Password"/>
</div>
<div class="form-group">
<input type="checkbox" name="remember_me"/> Remember me
</div>
</div>
<div class="footer">
<button type="submit" class="btn bg-olive btn-block">Sign me in</button>
2014-02-01 16:49:36 +01:00
2015-02-01 22:25:09 +01:00
<p><a href="#">I forgot my password</a></p>
2014-02-01 16:49:36 +01:00
2015-02-01 22:25:09 +01:00
<a href="register.html" class="text-center">Register a new membership</a>
2014-02-01 16:49:36 +01:00
</div>
2015-02-01 22:25:09 +01:00
</form>
<div class="margin text-center">
<span>Sign in using social networks</span>
<br/>
<button class="btn bg-light-blue btn-circle"><i class="fa fa-facebook"></i></button>
<button class="btn bg-aqua btn-circle"><i class="fa fa-twitter"></i></button>
<button class="btn bg-red btn-circle"><i class="fa fa-google-plus"></i></button>
</div>
</div>
2014-02-01 16:49:36 +01:00
2015-02-01 22:25:09 +01:00
<script src="http://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/js/bootstrap.min.js" type="text/javascript"></script>
2014-02-01 16:49:36 +01:00
2015-02-01 22:25:09 +01:00
</body>
2014-02-01 16:49:36 +01:00
</html>