front end html to look like existing capsul site without <pre>

This commit is contained in:
2020-05-10 21:43:06 -05:00
parent d706ae7761
commit 5d37f26585
8 changed files with 204 additions and 51 deletions

View File

@ -3,9 +3,14 @@
{% block title %}login{% endblock %}
{% block content %}
<form method="post">
<div class="hero">
<form method="post" class="single-content">
<label for="email">Email Address</label>
<input name="email" id="email" required>
<input type="text" name="email" id="email" required>
<input type="submit" value="Log In">
</form>
{% endblock %}
</div>
{% endblock %}
{% block pagesource %}/templates/login.html{% endblock %}