
Basic user registration system and email authantication. Change-Id: Iaa4266edaf78b5c42c4aafc0de2d1f11f9f6c4f5
49 lines
1.7 KiB
HTML
49 lines
1.7 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
{% block title %}<title>AdminLTE 2 | Log in</title>{% endblock title %}
|
|
<!-- Tell the browser to be responsive to screen width -->
|
|
<meta content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no" name="viewport">
|
|
<!-- Bootstrap 3.3.6 -->
|
|
<link rel="stylesheet" href="/static/bootstrap/css/bootstrap.min.css">
|
|
<!-- Font Awesome -->
|
|
<link rel="stylesheet" href="/static/Font-Awesome/css/font-awesome.min.css">
|
|
<!-- Ionicons -->
|
|
<link rel="stylesheet" href="/static/ionicons/css/ionicons.min.css">
|
|
<!-- Theme style -->
|
|
<link rel="stylesheet" href="/static/AdminLTE/css/AdminLTE.min.css">
|
|
<!-- iCheck -->
|
|
<link rel="stylesheet" href="/static/AdminLTE/plugins/iCheck/square/blue.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/html5shiv/3.7.3/html5shiv.min.js"></script>
|
|
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
|
|
<![endif]-->
|
|
</head>
|
|
<body class="hold-transition login-page">
|
|
{% block content %}
|
|
|
|
{% endblock content %}
|
|
|
|
<!-- jQuery 2.2.3 -->
|
|
<script src="/static/AdminLTE/plugins/jQuery/jquery-2.2.3.min.js"></script>
|
|
<!-- Bootstrap 3.3.6 -->
|
|
<script src="/static/bootstrap/js/bootstrap.min.js"></script>
|
|
<!-- iCheck -->
|
|
<script src="/static/AdminLTE/plugins/iCheck/icheck.min.js"></script>
|
|
<script>
|
|
$(function () {
|
|
$('input').iCheck({
|
|
checkboxClass: 'icheckbox_square-blue',
|
|
radioClass: 'iradio_square-blue',
|
|
increaseArea: '20%' // optional
|
|
});
|
|
});
|
|
</script>
|
|
</body>
|
|
</html>
|