Skip to content
Snippets Groups Projects
Select Git revision
  • 0d9788a158b2fb1f7cbfa8f30f460e91c26c3599
  • master default protected
2 results

login.html

Blame
  • login.html 222 B
    {% extends 'base.html' %}
    
    {% block title %}Log In{% endblock %}
    
    {% block content %}
    <h2>Log In</h2>
    <form method="post">
      {% csrf_token %}
      {{ form.as_p }}
      <button type="submit">Log In</button>
    </form>
    {% endblock %}