35 lines
769 B
HTML
35 lines
769 B
HTML
{% 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 %}
|