Files
steel-training/templates/shootoff.html

25 lines
823 B
HTML

{% extends "base.html" %}
{% block title %}Shootoff{% endblock %}
{% block content %}
<form class="" action="/generate-pdf-shootoff" method="post" target="_blank">
{% include 'setup.html' %}
<div class="mb-6 max-w-2xl mx-auto">
<h2>Shootoff</h2>
<div>
<label for="shootoff">
<img src="{{ url_for('static', filename='images/shootoff.webp') }}" alt="Shootoff">
<input type="radio" id="shootoff" name="stage" value="shootoff" required checked>
</label>
</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">
{%trans%}Generate PDF{%endtrans%}
</button>
</div>
</form>
{% endblock %}