Basic styling for login page

This commit is contained in:
2014-06-14 15:42:33 +02:00
parent 8be3dcf804
commit 05a50d4fcd
2 changed files with 69 additions and 0 deletions

View File

@@ -24,6 +24,8 @@
<link rel="apple-touch-icon-precomposed" sizes="114x114" href="/apple-touch-icon-114-precomposed.png">
<link rel="apple-touch-icon-precomposed" sizes="72x72" href="/apple-touch-icon-72-precomposed.png">
<link rel="apple-touch-icon-precomposed" href="apple-touch-icon-57-precomposed.png">
{% block header %}
{% endblock %}
</head>
<body>

View File

@@ -0,0 +1,67 @@
{% extends 'layout.html' %}
{% block header %}
<style type="text/css">
body {
background-color: #eee;
}
.form-signin {
max-width: 330px;
padding: 15px;
margin: 0 auto;
}
.form-signin .form-signin-heading,
.form-signin .checkbox {
margin-bottom: 10px;
}
.form-signin .checkbox {
font-weight: normal;
}
.form-signin .form-control {
position: relative;
height: auto;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
padding: 10px;
font-size: 16px;
}
.form-signin .form-control:focus {
z-index: 2;
}
.form-signin input[type="email"] {
margin-bottom: -1px;
border-bottom-right-radius: 0;
border-bottom-left-radius: 0;
}
.form-signin input[type="password"] {
margin-bottom: 10px;
border-top-left-radius: 0;
border-top-right-radius: 0;
}
</style>
{% endblock%}
{% block body %}
<div class="container-fluid">
<div class="row" id="featured">
<div class="container">
<form class="form-signin" role="login" action="{{ url_for_security('login') }}" method="POST" name="login_user_form">
{{ login_user_form.hidden_tag() }}
<h2 class="form-signin-heading">Please sign in</h2>
<input name="email" type="email" class="form-control" placeholder="Email address" required autofocus>
<input name="password" type="password" class="form-control" placeholder="Password" required>
<label class="checkbox">
<input name="remember" type="checkbox" value="remember"> Remember me
</label>
{{ login_user_form.next }}
<button class="btn btn-lg btn-primary btn-block" type="submit">Sign in</button>
</form>
</div>
</div>
</div>
{% endblock %}