mirror of
https://github.com/Southampton-RSG/breccia-mapper.git
synced 2026-03-03 03:17:07 +00:00
22 lines
419 B
HTML
22 lines
419 B
HTML
{% extends 'base.html' %}
|
|
|
|
{% block content %}
|
|
<h2>Consent</h2>
|
|
|
|
<p>
|
|
{{ config.CONSENT_TEXT|linebreaks }}
|
|
</p>
|
|
|
|
<form class="form"
|
|
method="POST">
|
|
{% csrf_token %}
|
|
|
|
{% load bootstrap4 %}
|
|
{% bootstrap_form form %}
|
|
|
|
{% buttons %}
|
|
<button class="btn btn-success" type="submit">Submit</button>
|
|
{% endbuttons %}
|
|
</form>
|
|
{% endblock %}
|