18 lines
		
	
	
		
			532 B
		
	
	
	
		
			HTML
		
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			532 B
		
	
	
	
		
			HTML
		
	
	
	
| {% extends 'base.html' %}
 | |
| {% import 'bootstrap/wtf.html' as wtf %}
 | |
| 
 | |
| {% block app_content %}
 | |
|     <h1>{{ _('Sign In Test') }}</h1>
 | |
|     <div class="row">
 | |
|         <div class="col-md-4">
 | |
|             {{ wtf.quick_form(form) }}
 | |
|         </div>
 | |
|     </div>
 | |
|     <br>
 | |
|     <p>{{ _('New User?') }} <a href="{{ url_for('auth.register') }}">{{ _('Click to Register!') }}</a></p>
 | |
|     <p>
 | |
|         {{ _('Forgot Your Password?') }}
 | |
|         <a href="{{ url_for('auth.reset_password_request') }}">{{ _('Click to Reset It') }}</a>
 | |
|     </p>
 | |
| {% endblock %}
 |