You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
551 B
19 lines
551 B
{% 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 %}
|
|
|