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/repapp/register_device.html

15 lines
408 B
HTML
Raw Normal View History

2023-04-18 19:13:30 +00:00
{% extends "repapp/base.html" %}
2023-04-19 19:28:59 +00:00
{% load crispy_forms_tags %}
2023-04-18 19:13:30 +00:00
{% block title %}- Gerät anmelden{% endblock title %}
{% block content %}
2023-04-19 19:28:59 +00:00
<h1 class="mt-2">Gerät anmelden</h1>
<hr class="mt-0 mb-4">
2023-04-18 19:13:30 +00:00
<form action="{% url 'register_device' cafe.id %}" method="post">
{% csrf_token %}
2023-04-19 19:28:59 +00:00
{{ form|crispy }}
2023-04-18 19:13:30 +00:00
<button type="submit" class="btn btn-primary">Absenden</button>
</form>
{% endblock content %}