mirror of
				https://github.com/firefly-iii/firefly-iii.git
				synced 2025-10-31 10:47:00 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			24 lines
		
	
	
		
			828 B
		
	
	
	
		
			Twig
		
	
	
	
	
	
			
		
		
	
	
			24 lines
		
	
	
		
			828 B
		
	
	
	
		
			Twig
		
	
	
	
	
	
| {% extends "./layout/default.twig" %}
 | |
| 
 | |
| {% block breadcrumbs %}
 | |
|     {{ Breadcrumbs.renderIfExists(Route.getCurrentRoute.getName) }}
 | |
| {% endblock %}
 | |
| 
 | |
| {% block content %}
 | |
|     <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>
 | |
|             </div>
 | |
|         </div>
 | |
|     </div>
 | |
| {% endblock %}
 |