forked from 3wordchant/capsul-flask
		
	
		
			
				
	
	
		
			18 lines
		
	
	
		
			454 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			454 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
| {% extends 'base.html' %}
 | |
| 
 | |
| {% block title %}login{% endblock %}
 | |
| 
 | |
| {% block content %}
 | |
|   <div class="half-margin">
 | |
|     <h1>LOGIN</h1>
 | |
|   </div>
 | |
|   <form method="post" class="half-margin">
 | |
|     <div class="row wrap">
 | |
|       <label for="email">Email Address</label>
 | |
|       <input type="text" name="email" id="email" required>
 | |
|       <input type="submit" value="Log In">
 | |
|     </div>
 | |
|   </form>
 | |
| {% endblock %}
 | |
| 
 | |
| {% block pagesource %}/templates/login.html{% endblock %} |