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/templates/registration/login.html

14 lines
345 B
HTML
Raw Normal View History

2023-04-23 11:56:52 +00:00
{% 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 %}