| 
									
										
										
										
											2021-02-01 06:43:19 +01:00
										 |  |  | {% extends "./v1/layout/guest" %}
 | 
					
						
							| 
									
										
										
										
											2019-08-04 07:00:47 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | {% block content %}
 | 
					
						
							|  |  |  |     {% if session_has('error') %}
 | 
					
						
							|  |  |  |         <div class="alert alert-danger alert-dismissible" role="alert">
 | 
					
						
							|  |  |  |             <button type="button" class="close" data-dismiss="alert">
 | 
					
						
							|  |  |  |                 <span>×</span><span class="sr-only">{{ 'close'|_ }}</span>
 | 
					
						
							|  |  |  |             </button>
 | 
					
						
							|  |  |  |             <strong>{{ 'flash_error'|_ }}</strong> {{ session('error') }}
 | 
					
						
							|  |  |  |         </div>
 | 
					
						
							|  |  |  |     {% endif %}
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     <div class="login-box-body">
 | 
					
						
							|  |  |  |         <p class="login-box-msg">{{ trans('firefly.two_factor_welcome', {user: user.email}) }}</p>
 | 
					
						
							|  |  |  |         <p class="login-box-msg">{{ 'two_factor_enter_code'|_ }}</p>
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         <form action="{{ route('two-factor.submit') }}" method="POST">
 | 
					
						
							|  |  |  |             <input type="hidden" name="_token" value="{{ csrf_token() }}"/>
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             <div class="form-group has-feedback">
 | 
					
						
							| 
									
										
										
										
											2019-08-04 07:10:18 +02:00
										 |  |  |                 <input type="text" name="one_time_password" class="form-control" placeholder="{{ 'two_factor_code_here'|_ }}"/>
 | 
					
						
							| 
									
										
										
										
											2019-08-04 07:00:47 +02:00
										 |  |  |             </div>
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             <div class="row">
 | 
					
						
							|  |  |  |                 <div class="col-xs-6 col-xs-offset-6">
 | 
					
						
							|  |  |  |                     <button type="submit" class="btn btn-primary btn-block btn-flat">{{ 'authenticate'|_ }}</button>
 | 
					
						
							|  |  |  |                 </div>
 | 
					
						
							|  |  |  |             </div>
 | 
					
						
							|  |  |  |         </form>
 | 
					
						
							|  |  |  |         <a href="{{ route('two-factor.lost') }}">{{ 'two_factor_forgot'|_ }}</a>
 | 
					
						
							|  |  |  |     </div>
 | 
					
						
							| 
									
										
										
										
											2019-08-17 12:09:03 +02:00
										 |  |  | {% endblock %}
 |