{% extends "base.html" %} {% block pagetitle %}Login{% endblock %} {% block content %}

Welcome to bashoneliners.com, a place to share Bash one-liners with the world.

{% if form.errors %}

Your username and password didn't match. Please try again.

{% endif %}
{% csrf_token %}
{{ form.username.label_tag }} {{ form.username }}
{{ form.password.label_tag }} {{ form.password }}

Forgot your password?

Don't have an account yet?

{% endblock %}