2015-05-02 13:20:49 +02:00
|
|
|
{% extends "./layout/default.twig" %}
|
2015-06-19 20:59:14 +02:00
|
|
|
|
|
|
|
{% block breadcrumbs %}
|
2015-05-02 13:20:49 +02:00
|
|
|
{{ Breadcrumbs.renderIfExists(Route.getCurrentRoute.getName) }}
|
2015-06-19 20:59:14 +02:00
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
{% block content %}
|
2015-06-27 08:06:24 +02:00
|
|
|
<div class="row">
|
|
|
|
<div class="col-lg-6 col-lg-offset-3 col-md-6 col-sm-12">
|
|
|
|
<div class="box box-primary">
|
|
|
|
<div class="box-header with-border">
|
|
|
|
<h3 class="box-title">Options</h3>
|
|
|
|
</div>
|
|
|
|
<div class="box-body">
|
|
|
|
<ul>
|
|
|
|
<li><a href="{{ route('profile.change-password') }}">Change your password</a></li>
|
|
|
|
<li><a class="text-danger" href="{{ route('profile.delete-account') }}">Delete account</a></li>
|
|
|
|
</ul>
|
|
|
|
</div>
|
2015-05-02 13:20:49 +02:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
2015-05-05 12:51:57 +02:00
|
|
|
{% endblock %}
|