create_event.html 558 B

123456789101112131415161718192021
  1. {% load bootstrap5 %}
  2. <!DOCTYPE html>
  3. <html lang="de">
  4. <head>
  5. <meta charset="UTF-8">
  6. <title>Event erstellen</title>
  7. {% bootstrap_css %}
  8. </head>
  9. <body>
  10. <div class="container">
  11. <h2>Event erstellen</h2>
  12. <form method="post">
  13. {% csrf_token %}
  14. {% bootstrap_form form %}
  15. <button type="submit" class="btn btn-primary">Event erstellen</button>
  16. <a href="{% url 'public' %}" class="btn btn-secondary">Abbrechen</a>
  17. </form>
  18. </div>
  19. {% bootstrap_javascript %}
  20. </body>
  21. </html>