2020-05-10 03:59:22 +00:00
|
|
|
{% extends 'base.html' %}
|
|
|
|
|
2020-05-21 04:01:14 +00:00
|
|
|
{% block title %}Login/Register{% endblock %}
|
2020-05-10 03:59:22 +00:00
|
|
|
|
|
|
|
{% block content %}
|
2020-05-13 05:28:53 +00:00
|
|
|
<div class="row half-margin">
|
2020-05-21 04:01:14 +00:00
|
|
|
<h1>LOGIN/REGISTER</h1>
|
2020-05-11 06:47:14 +00:00
|
|
|
</div>
|
2020-05-21 04:01:14 +00:00
|
|
|
<p>If you do not already have an account, one will be made for you.</p>
|
2020-05-11 06:47:14 +00:00
|
|
|
<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>
|
2020-05-10 03:59:22 +00:00
|
|
|
</form>
|
2020-05-11 02:43:06 +00:00
|
|
|
{% endblock %}
|
|
|
|
|
2020-05-21 04:01:14 +00:00
|
|
|
{% block pagesource %}/templates/login.html{% endblock %}
|