mirror of
				https://github.com/firefly-iii/firefly-iii.git
				synced 2025-10-31 02:36:28 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			46 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			Twig
		
	
	
	
	
	
			
		
		
	
	
			46 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			Twig
		
	
	
	
	
	
| {% extends "./layout/guest.twig" %}
 | |
| 
 | |
| {% block content %}
 | |
|     <div class="row">
 | |
|         <div class="col-md-4 col-md-offset-4">
 | |
|             <div class="login-panel panel panel-default">
 | |
|                 <div class="panel-heading">
 | |
|                     <h3 class="panel-title">Firefly III — Reset Password</h3>
 | |
|                 </div>
 | |
| 				<div class="panel-body">
 | |
| 					{% if session.status %}
 | |
| 						<div class="alert alert-success">
 | |
| 							{{ session.status }}
 | |
| 						</div>
 | |
| 					{% endif %}
 | |
| 
 | |
| 					{% if errors|length > 0 %}
 | |
| 						<div class="alert alert-danger">
 | |
| 							<strong>Whoops!</strong> There were some problems with your input.<br><br>
 | |
| 							<ul>
 | |
| 								{% for error in errors.all %}
 | |
| 									<li>{{ error }}</li>
 | |
| 								{% endfor %}
 | |
| 							</ul>
 | |
| 						</div>
 | |
| 					{% endif %}
 | |
| 
 | |
| 					<form role="form" method="POST" action="/password/email">
 | |
| 						<input type="hidden" name="_token" value="{{ csrf_token() }}">
 | |
| 						<div class="form-group">
 | |
| 							<label class="control-label">E-Mail</label>
 | |
|                             <input type="email" class="form-control" placeholder="E-Mail" name="email" value="{{ old.email }}">
 | |
| 						</div>
 | |
| 
 | |
|                         <p>
 | |
|                             <button type="submit" class="btn btn-lg btn-success btn-block">Send Password Reset</button>
 | |
|                         </p>
 | |
| 
 | |
| 					</form>
 | |
| 				</div>
 | |
| 			</div>
 | |
| 		</div>
 | |
| 	</div>
 | |
| </div>
 | |
| {% endblock %}
 |