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.
21 lines
880 B
21 lines
880 B
{% extends '::base.html.twig' %}
|
|
{% block title %}{{ parent() }} - Updated terms and conditions{% endblock %}
|
|
{% block body %}
|
|
<div class="container">
|
|
<div class="row">
|
|
<div class="col-xs-12 col-sm-8 col-sm-offset-2 col-md-6 col-md-offset-3">
|
|
<div class="panel panel-info">
|
|
<div class="panel-heading">
|
|
<h3 class="panel-title">Updated terms and conditions</h3>
|
|
</div>
|
|
<div class="panel-body">
|
|
Our terms of service have been updated.<br>You must accept these terms to be able to continue using the application.
|
|
</div>
|
|
<div class="panel-body">
|
|
{{ form(form, {'style': 'horizontal'}) }}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{% endblock %} |