31 lines
961 B
HTML
31 lines
961 B
HTML
{% extends "_base.html" %}
|
|
{% block title %}Agree to terms and conditions{% endblock %}
|
|
|
|
{% block header %}
|
|
<style type="text/css">
|
|
{% include "sso.css" without context %}
|
|
|
|
#consent_form {
|
|
margin-top: 56px;
|
|
}
|
|
</style>
|
|
{% endblock %}
|
|
|
|
{% block body %}
|
|
<header>
|
|
<h1>Your account is nearly ready</h1>
|
|
<p>Agree to the terms to create your account.</p>
|
|
</header>
|
|
<main>
|
|
{% include "sso_partial_profile.html" %}
|
|
<form method="post" action="{{my_url}}" id="consent_form">
|
|
<p>
|
|
<input id="accepted_version" type="checkbox" name="accepted_version" value="{{ consent_version }}" required>
|
|
<label for="accepted_version">I have read and agree to the <a href="{{ terms_url }}" target="_blank" rel="noopener">terms and conditions</a>.</label>
|
|
</p>
|
|
<input type="submit" class="primary-button" value="Continue"/>
|
|
</form>
|
|
</main>
|
|
{% include "sso_footer.html" without context %}
|
|
{% endblock %}
|