Started using Bootstrap for styling, moved app factory, added tests, started work on login and registration templates, and more

This commit is contained in:
2024-05-05 16:15:55 -04:00
parent 5d9ffffb79
commit 4503603915
19 changed files with 327 additions and 86 deletions

View File

@@ -1,10 +1,21 @@
{% extends "base.html" %}
{% set title %}Account Login{% endset %}
{% set title %}Login{% endset %}
{% block content %}
Login here
---------------
Soon to come ;)
<h1 class="text-center h1">Login</h1>
<hr>
<form>
<div class="mb-3">
<label for="login-email" class="form-label">Email address</label>
<input type="email" class="form-control" id="login-email" placeholder="example@email.com">
</div>
<div class="mb-3">
<label for="login-password" class="form-label">Password</label>
<input type="password" class="form-control" id="login-password">
</div>
</form>
{% endblock %}