You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
{% extends "layout.html" %}
|
|
|
|
{% block body %}
|
|
|
|
<div class="well col-sm-6 col-sm-offset-2">
|
|
|
|
<h2 style="margin-top: 0">{{_('Login')}}</h2>
|
|
|
|
<form method="POST" role="form">
|
|
|
|
<div class="form-group">
|
|
|
|
<label for="username">{{_('Username')}}</label>
|
|
|
|
<input type="text" class="form-control" id="username" name="username" placeholder="{{_('Username')}}">
|
|
|
|
</div>
|
|
|
|
<div class="form-group">
|
|
|
|
<label for="password">{{_('Password')}}</label>
|
|
|
|
<input type="password" class="form-control" id="password" name="password" placeholder="{{_('Password')}}">
|
|
|
|
</div>
|
|
|
|
<div class="checkbox">
|
|
|
|
<label>
|
|
|
|
<input type="checkbox" name="remember_me" checked> {{_('Remember me')}}
|
|
|
|
</label>
|
|
|
|
</div>
|
|
|
|
<button type="submit" class="btn btn-default">{{_('Submit')}}</button>
|
|
|
|
</form>
|
|
|
|
</div>
|
|
|
|
{% if error %}
|
|
|
|
<div class="col-sm-6 col-sm-offset-2">
|
|
|
|
<div class="alert alert-danger">{{error}}</div>
|
|
|
|
</div>
|
|
|
|
{% endif %}
|
|
|
|
{% endblock %}
|