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