Files
lapp/templates/secure_data.html
T

35 lines
769 B
HTML
Raw Normal View History

2026-01-01 21:07:34 +01:00
{% extends "base.html" %}
{% block content %}
<h2>Secure Data</h2>
<form method="POST">
{{ form.hidden_tag() }}
<div class="grid">
<article>
<label>{{ form.field1.label }}</label>
{{ form.field1(class="") }}
</article>
<article>
<label>{{ form.field2.label }}</label>
{{ form.field2(class="") }}
</article>
<article>
<label>{{ form.field3.label }}</label>
{{ form.field3(class="") }}
</article>
<article>
<label>{{ form.field4.label }}</label>
{{ form.field4(class="") }}
</article>
</div>
<button type="submit" class="contrast">{{ form.submit.label }}</button>
</form>
{% endblock %}