starting to build console controller and views

This commit is contained in:
2020-05-11 01:47:14 -05:00
parent 7932db90d5
commit 18e6a1b141
18 changed files with 345 additions and 89 deletions

View File

@ -3,14 +3,16 @@
{% 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">
<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>
</div>
{% endblock %}
{% block pagesource %}/templates/login.html{% endblock %}