master
1{% extends "base-nav.html" %}
2
3{% block css %}
4<link rel="stylesheet" href="{{ static_url("ffu.css") }}">
5{% end %}
6
7{% block content %}
8<div class="container">
9 <form class="form-signin" role="form" action="" method="post">
10 <input type="text" class="form-control" name="username" placeholder="Username" required autofocus>
11 <input type="password" class="form-control" name="password" placeholder="Password" required>
12 <!--<label class="checkbox">
13 <input type="checkbox" value="remember-me"> Remember me
14 </label>-->
15 {% if 'errormsg' in globals() %}
16 <div class="alert-warning text-center bot-padding">{{ errormsg }}</div>
17 {% end %}
18 <button class="btn btn-lg btn-primary btn-block" type="submit">Sign in</button>
19 </form>
20</div> <!-- /container -->
21{% end %}