2013-07-29 23:03:31 +02:00
|
|
|
{% extends "zerver/portico_signup.html" %}
|
2016-04-21 08:48:33 +02:00
|
|
|
{#
|
2016-08-10 03:05:26 +02:00
|
|
|
Allow the user to accept a TOS, creating an email record of that fact.
|
|
|
|
Users only hit this page if they are coming from a migration or other update of the TOS;
|
|
|
|
the registration flow has its own (nearly identical) copy of the fields below in register.html.
|
2016-04-21 08:48:33 +02:00
|
|
|
#}
|
2013-01-08 23:26:40 +01:00
|
|
|
|
|
|
|
{% block portico_content %}
|
|
|
|
|
2018-12-17 07:50:38 +01:00
|
|
|
<div class="account-accept-terms-page flex full-page">
|
|
|
|
<div class="center-block new-style">
|
|
|
|
{% if special_message_template %}
|
|
|
|
{% include special_message_template %}
|
|
|
|
{% else %}
|
|
|
|
<div class="pitch">
|
|
|
|
<h1 class="get-started">{{ _("Accept the new Terms of Service") }}…</h1>
|
2013-01-08 23:26:40 +01:00
|
|
|
</div>
|
2018-12-17 07:50:38 +01:00
|
|
|
{% endif %}
|
|
|
|
|
2018-12-30 07:04:41 +01:00
|
|
|
<div class="form-horizontal white-box">
|
2020-09-22 02:54:44 +02:00
|
|
|
<form method="post" class="form-horizontal" id="registration" action="{{ url('accept_terms') }}">
|
2018-12-17 07:50:38 +01:00
|
|
|
{{ csrf_input }}
|
|
|
|
<div class="control-group">
|
|
|
|
<label for="id_email" class="control-label">{{ _("Email") }}</label>
|
|
|
|
<div class="controls fakecontrol">
|
|
|
|
<p>{{ email }}</p>
|
|
|
|
</div>
|
|
|
|
</div>
|
2013-01-08 23:26:40 +01:00
|
|
|
|
2018-12-17 07:50:38 +01:00
|
|
|
<div class="input-group margin terms-of-service">
|
2017-03-06 19:57:26 +01:00
|
|
|
{#
|
|
|
|
This is somewhat subtle.
|
|
|
|
Checkboxes have a name and value, and when the checkbox is ticked, the form posts
|
|
|
|
with name=value. If the checkbox is unticked, the field just isn't present at all.
|
2013-01-08 23:26:40 +01:00
|
|
|
|
2017-03-06 19:57:26 +01:00
|
|
|
This is distinct from 'checked', which determines whether the checkbox appears
|
|
|
|
at all. (So, it's not symmetric to the code above.)
|
|
|
|
#}
|
2018-12-17 07:50:38 +01:00
|
|
|
<label for="id_terms" class="inline-block checkbox">
|
|
|
|
<input id="id_terms" class="required" type="checkbox" name="terms"
|
|
|
|
{% if form.terms.value() %}checked="checked"{% endif %} />
|
|
|
|
<span></span>
|
2020-05-26 05:15:21 +02:00
|
|
|
{% trans %}I agree to the <a href="{{ root_domain_uri }}/terms" target="_blank" rel="noopener noreferrer">Terms of Service</a>.{% endtrans %}
|
2018-12-17 07:50:38 +01:00
|
|
|
</label>
|
|
|
|
{% if form.terms.errors %}
|
|
|
|
{% for error in form.terms.errors %}
|
|
|
|
<p class="help-inline text-error">{{ error }}</p>
|
|
|
|
{% endfor %}
|
|
|
|
{% endif %}
|
|
|
|
</div>
|
2021-04-21 00:46:14 +02:00
|
|
|
<br />
|
2018-12-17 07:50:38 +01:00
|
|
|
<div class="control-group">
|
|
|
|
<div class="controls">
|
2021-04-21 00:46:14 +02:00
|
|
|
<input type="submit" class="btn btn-primary" value="{{ _('Enter') }}" /><br />
|
2018-12-17 07:50:38 +01:00
|
|
|
<input type="hidden" name="next" value="{{ next }}" />
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</form>
|
2013-01-08 23:26:40 +01:00
|
|
|
</div>
|
2018-12-17 07:50:38 +01:00
|
|
|
</div>
|
|
|
|
</div>
|
2013-01-08 23:26:40 +01:00
|
|
|
{% endblock %}
|