Padded bunch of project data

This commit is contained in:
nocci 2025-04-21 11:56:29 +00:00
parent 65972f37cc
commit 0044017df8
18 changed files with 1162 additions and 0 deletions

View file

@ -0,0 +1,23 @@
{% extends "base.html" %}
{% block content %}
<div class="row justify-content-center mt-5">
<div class="col-md-6">
<div class="card shadow-sm">
<div class="card-body">
<h2 class="card-title mb-4">{{ _('Register') }}</h2>
<form method="POST">
<div class="mb-3">
<label class="form-label">{{ _('Username') }}</label>
<input type="text" name="username" class="form-control" required>
</div>
<div class="mb-3">
<label class="form-label">{{ _('Password') }}</label>
<input type="password" name="password" class="form-control" required>
</div>
<button type="submit" class="btn btn-primary w-100">{{ _('Register') }}</button>
</form>
</div>
</div>
</div>
</div>
{% endblock %}