This repository has been archived on 2026-03-30. You can view files and clone it, but cannot push or open issues or pull requests.
RepApp/rc_hip/repapp_users/templates/registration/login.html
2023-04-23 13:56:52 +02:00

13 lines
345 B
HTML

{% extends "repapp/base.html" %}
{% load crispy_forms_tags %}
{% block title %}
- Gast Login
{% endblock title %}
{% block content %}
<h2>Gast Login</h2>
<form method="post">
{% csrf_token %}
{{ form|crispy }}
<button type="submit" class="btn btn-primary">Anmelden</button>
</form>
{% endblock content %}