| 
									
										
										
										
											2015-05-01 08:29:41 +02:00
										 |  |  | {% extends "./layout/guest.twig" %}
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | {% block content %}
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-06-21 11:59:35 +02:00
										 |  |  |     {% if errors.has('email') %}
 | 
					
						
							|  |  |  |         <div class="row">
 | 
					
						
							|  |  |  |             <div class="col-lg-12">
 | 
					
						
							|  |  |  |                 <div class="alert alert-danger alert-dismissible" role="alert">
 | 
					
						
							|  |  |  |                     <button type="button" class="close" data-dismiss="alert"><span aria-hidden="true">×</span><span class="sr-only">{{ 'close'|_ }}</span>
 | 
					
						
							|  |  |  |                     </button>
 | 
					
						
							|  |  |  |                     <strong>Error!</strong> {{ errors.get('email')[0] }}
 | 
					
						
							|  |  |  |                 </div>
 | 
					
						
							|  |  |  |             </div>
 | 
					
						
							| 
									
										
										
										
											2015-05-01 08:29:41 +02:00
										 |  |  |         </div>
 | 
					
						
							| 
									
										
										
										
											2015-06-21 11:59:35 +02:00
										 |  |  |     {% endif %}
 | 
					
						
							| 
									
										
										
										
											2015-05-01 08:29:41 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-02-07 07:36:31 +01:00
										 |  |  |     {% if session('logoutMessage') %}
 | 
					
						
							|  |  |  |         <div class="row">
 | 
					
						
							|  |  |  |             <div class="col-lg-12">
 | 
					
						
							|  |  |  |                 <div class="alert alert-info alert-dismissible" role="alert">
 | 
					
						
							|  |  |  |                     <button type="button" class="close" data-dismiss="alert"><span aria-hidden="true">×</span><span class="sr-only">{{ 'close'|_ }}</span>
 | 
					
						
							|  |  |  |                     </button>
 | 
					
						
							|  |  |  |                     {{ session('logoutMessage') }}
 | 
					
						
							|  |  |  |                 </div>
 | 
					
						
							|  |  |  |             </div>
 | 
					
						
							|  |  |  |         </div>
 | 
					
						
							|  |  |  |     {% endif %}
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-06-21 11:59:35 +02:00
										 |  |  |     <div class="login-box-body">
 | 
					
						
							|  |  |  |         <p class="login-box-msg">Sign in to start your session</p>
 | 
					
						
							| 
									
										
										
										
											2015-05-01 08:29:41 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-01-08 13:35:27 +01:00
										 |  |  |         <form action="{{ URL.to('/login') }}" method="post">
 | 
					
						
							| 
									
										
										
										
											2015-06-21 11:59:35 +02:00
										 |  |  |             <input type="hidden" name="_token" value="{{ csrf_token() }}"/>
 | 
					
						
							| 
									
										
										
										
											2015-05-01 08:29:41 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-06-21 11:59:35 +02:00
										 |  |  |             <div class="form-group has-feedback">
 | 
					
						
							|  |  |  |                 <input type="email" name="email" class="form-control" placeholder="Email"/>
 | 
					
						
							|  |  |  |             </div>
 | 
					
						
							|  |  |  |             <div class="form-group has-feedback">
 | 
					
						
							|  |  |  |                 <input type="password" name="password" class="form-control" placeholder="Password"/>
 | 
					
						
							|  |  |  |             </div>
 | 
					
						
							|  |  |  |             <div class="row">
 | 
					
						
							|  |  |  |                 <div class="col-xs-8">
 | 
					
						
							|  |  |  |                     <div class="checkbox">
 | 
					
						
							|  |  |  |                         <label>
 | 
					
						
							|  |  |  |                             <input type="checkbox" name="remember" value="1"> Remember Me
 | 
					
						
							|  |  |  |                         </label>
 | 
					
						
							|  |  |  |                     </div>
 | 
					
						
							|  |  |  |                 </div>
 | 
					
						
							|  |  |  |                 <!-- /.col -->
 | 
					
						
							|  |  |  |                 <div class="col-xs-4">
 | 
					
						
							|  |  |  |                     <button type="submit" class="btn btn-primary btn-block btn-flat">Sign In</button>
 | 
					
						
							|  |  |  |                 </div>
 | 
					
						
							|  |  |  |                 <!-- /.col -->
 | 
					
						
							|  |  |  |             </div>
 | 
					
						
							| 
									
										
										
										
											2015-05-01 08:29:41 +02:00
										 |  |  |         </form>
 | 
					
						
							| 
									
										
										
										
											2016-09-01 18:31:39 +02:00
										 |  |  |         {% if not singleUserMode %}
 | 
					
						
							| 
									
										
										
										
											2016-01-08 16:32:31 +01:00
										 |  |  |             <a href="{{ URL.to('/register') }}" class="text-center">Register a new account</a><br>
 | 
					
						
							| 
									
										
										
										
											2015-06-21 11:59:35 +02:00
										 |  |  |         {% endif %}
 | 
					
						
							| 
									
										
										
										
											2016-01-19 18:14:15 +01:00
										 |  |  |         <a href="{{ URL.to('/password/reset') }}">I forgot my password</a>
 | 
					
						
							| 
									
										
										
										
											2015-05-01 08:29:41 +02:00
										 |  |  |     </div>
 | 
					
						
							| 
									
										
										
										
											2015-06-21 11:59:35 +02:00
										 |  |  |     <!-- /.login-box-body -->
 | 
					
						
							| 
									
										
										
										
											2015-05-01 08:29:41 +02:00
										 |  |  | {% endblock %}
 | 
					
						
							|  |  |  | 
 |