{% extends "base.html" %} {% block title %}Staff Login | Roadshow Calendar{% endblock %} {% block content %}
Staff only

Secure sign in

Use your staff credentials to add or manage events. Visitors cannot modify the calendar.

{% csrf_token %} {% for field in form %}
{{ field }} {% for error in field.errors %}
{{ error }}
{% endfor %}
{% endfor %} {% if form.non_field_errors %}
{{ form.non_field_errors }}
{% endif %}
{% endblock %}