2019-07-02 07:34:12 +00:00
|
|
|
{% extends 'bookmarks/layout.html' %}
|
|
|
|
{% load widget_tweaks %}
|
|
|
|
|
|
|
|
{% block title %}Login{% endblock %}
|
|
|
|
|
|
|
|
{% block content %}
|
|
|
|
|
|
|
|
<div class="login-page">
|
|
|
|
<div class="columns">
|
2019-07-07 07:22:55 +00:00
|
|
|
<section class="content-area column col-5 col-md-12">
|
2019-07-02 07:34:12 +00:00
|
|
|
<div class="content-area-header">
|
|
|
|
<h2>Login</h2>
|
|
|
|
</div>
|
|
|
|
<form method="post" action="{% url 'login' %}">
|
|
|
|
{% csrf_token %}
|
|
|
|
{% if form.errors %}
|
|
|
|
<div class="form-group has-error">
|
|
|
|
<p class="form-input-hint">Your username and password didn't match. Please try again.</p>
|
|
|
|
</div>
|
|
|
|
{% endif %}
|
|
|
|
<div class="form-group">
|
|
|
|
<label class="form-label" for="{{ form.username.id_for_label }}">Username</label>
|
|
|
|
{{ form.username|add_class:'form-input' }}
|
|
|
|
</div>
|
|
|
|
<div class="form-group">
|
|
|
|
<label class="form-label" for="{{ form.username.id_for_label }}">Password</label>
|
|
|
|
{{ form.password|add_class:'form-input' }}
|
|
|
|
</div>
|
|
|
|
|
2019-07-07 07:22:55 +00:00
|
|
|
<input type="submit" value="Login" class="btn btn-primary mt-2 col-md-12">
|
2019-07-02 07:34:12 +00:00
|
|
|
<input type="hidden" name="next" value="{{ next }}">
|
|
|
|
</form>
|
|
|
|
</section>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
{% endblock %}
|