18F/forest-service-prototype

View on GitHub
forestserviceprototype/specialuseform/templates/registration/login.html

Summary

Maintainability
Test Coverage
{% extends "specialuseform/base.html" %}

{% block title %}Login{% endblock %}

{% block content %}
  <h2>Login</h2>
  <form method="post">
    {% csrf_token %}
    {{ form.as_p }}
    <button type="submit">Login</button>
  </form>
{% endblock %}