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

@@ -3,8 +3,42 @@
{% set title %}Account Registration{% endset %}
{% block content %}
Register for an account
-----------------------
Soon to come ;)
<h1 class="text-center h1">Register for an account</h1>
<hr>
<form>
<div class="row">
<div class="col mb-3">
<label for="user-first-name" class="form-label">First Name</label>
<input type="text" class="form-control" id="user-first-name" placeholder="John">
</div>
<div class="col mb-3">
<label for="user-last-name" class="form-label">Last Name</label>
<input type="text" class="form-control" id="user-last-name" placeholder="Doe">
</div>
</div>
<div class="row">
<div class="col mb-3">
<label for="user-email" class="form-label">Email address</label>
<input type="email" class="form-control" id="user-email" placeholder="example@email.com">
</div>
</div>
<div class="row">
<div class="col mb-3">
<label for="user-password" class="form-label">Password</label>
<input type="password" class="form-control" id="user-password">
</div>
</div>
<div class="row">
<div class="col mb-3">
<label for="user-password-confirm" class="form-label">Confirm Password</label>
<input type="password" class="form-control" id="user-password-confirm">
</div>
</div>
<div class="row">
<button type="submit" class="row btn btn-primary">Submit</button>
</div>
</form>
{% endblock %}