20 lines
		
	
	
		
			551 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
		
			551 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
{% extends 'base.html' %}
 | 
						|
 | 
						|
{% block title %}Login/Register{% endblock %}
 | 
						|
 | 
						|
{% block content %}
 | 
						|
  <div class="row half-margin">
 | 
						|
    <h1>LOGIN/REGISTER</h1>
 | 
						|
  </div>
 | 
						|
  <p>If you do not already have an account, one will be made for you.</p>
 | 
						|
  <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 %}
 |