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.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.
tos/Resources/views/Tos/accept.html.twig

16 lines
579 B

{% 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 %}