Add shootoff and ipsc el presidente drills

This commit is contained in:
bogo
2024-09-14 12:59:33 +02:00
parent d9d4f47447
commit f963743d42
15 changed files with 677 additions and 228 deletions

22
templates/shootoff.html Normal file
View File

@@ -0,0 +1,22 @@
{% extends "base.html" %}
{% block title %}Shootoff{% endblock %}
{% block content %}
<form class="" action="/generate-pdf-shootoff" method="post">
{% include 'setup.html' %}
<div class="mb-6 max-w-2xl mx-auto">
<h2>Shootoff</h2>
<div class="mb-6 max-w-2xl mx-auto mt-4">
<img src="{{ url_for('static', filename='images/shootoff.png') }}" alt="Shootoff">
</div>
</div>
<div class="text-center">
<button type="submit"
class="bg-green-500 text-white py-2 px-4 rounded-md hover:bg-green-600 transition-colors">
Generuj
</button>
</div>
</form>
{% endblock %}