{% load static %}
<link rel="stylesheet" href="{% static 'css/main.css' %}" type="text/css">
<head>
    <meta charset="UTF-8">
    <title>Reset Password</title>
</head>
<div class="page-wrap gradient-primary">
    <div class="container">
        <div class="panel">
            <h2 class="h3">{{ title }}</h2>
            <p class="tc gray-90 inverted-wrapper">Forgotten your password? Enter your email address below, and we'll email instructions for setting a new one.</p>
            <form method="post">
                {% csrf_token %}
                <div class="form-group">
                    <label for="email">{{ form.email.label_tag }}</label>
                    <input autofocus="off" class="form-control" id="email" name="email"
                           :placeholder="Email" type="email">
                    <div class="error">{{ form.email.errors }}</div>
                </div>
                <button class="btn btn-primary btn-lg btn-block" name="commit" type="submit">Submit</button>
            </form>
        </div>
    </div>
    {% include "base/footer.html" %}
</div>

