{% extends "base.html" %}

{% block content %}
<h1>{% block title %} Login {% endblock %}</h1>
        <form method="POST" action="/login">
            <div class="form-group">
                <input class="form-control" type="email" name="email" placeholder="Your Email" autofocus="">
            </div>

            <div class="form-group">
                <input class="form-control" type="password" name="password" placeholder="Your Password">
            </div>
            <div class="form-group">
                <label class="checkbox">
                    <input type="checkbox">
                    Remember me
                </label>
            </div>
            <button class="btn btn-primary">Login</button>
        </form>
{% endblock %}