mirror of
				https://github.com/tiyn/container-critique.git
				synced 2025-10-31 03:01:21 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			26 lines
		
	
	
		
			657 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			26 lines
		
	
	
		
			657 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
| {% extends "template.html" %}
 | |
| 
 | |
| {% block content %}
 | |
| 
 | |
| <div class="container">
 | |
|     <div class="logging">
 | |
|         <h1>Sign In</h1>
 | |
|         <form action="" method="post" novalidate>
 | |
|             {{ form.hidden_tag() }}
 | |
|             <p>
 | |
|                 {{ form.username.label }}<br>
 | |
|                 {{ form.username(size=32) }}
 | |
|             </p>
 | |
|             <p>
 | |
|                 {{ form.password.label }}<br>
 | |
|                 {{ form.password(size=32) }}
 | |
|             </p>
 | |
|             <p>{{ form.submit() }}</p>
 | |
|             {% for mesg in get_flashed_messages() %}
 | |
|             <p>{{ mesg }}</p>
 | |
|             {% endfor %}
 | |
|         </form>
 | |
|     </div>
 | |
| </div>
 | |
| {% endblock %}
 |