You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
579 B
16 lines
579 B
7 years ago
|
{% extends '::base.html.twig' %}
|
||
|
{% block body %}
|
||
|
<div class="container-fluid">
|
||
|
<div class="row">
|
||
|
<div class="col-xs-12">
|
||
|
<div class="alert alert-info">Our terms of service have been updated.<br>You must accept these terms to be able to continue using the application.</div>
|
||
|
</div>
|
||
|
<div class="col-xs-12">
|
||
|
<iframe src="{{ tos_url }}" style="width: 100%; height: 70vh;"></iframe>
|
||
|
</div>
|
||
|
<div class="col-xs-12">
|
||
|
{{ form(form, {'style': 'horizontal'}) }}
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
{% endblock %}
|