zbiorki_app/templates/register.html
Mateusz Gruszczyński 6bd6284f49 first commit
2025-03-07 22:35:43 +01:00

17 lines
618 B
HTML

{% extends 'base.html' %}
{% block title %}Rejestracja{% endblock %}
{% block content %}
<h1>Rejestracja</h1>
<form method="post">
<div class="mb-3">
<label for="username" class="form-label">Nazwa użytkownika</label>
<input type="text" class="form-control" id="username" name="username" required>
</div>
<div class="mb-3">
<label for="password" class="form-label">Hasło</label>
<input type="password" class="form-control" id="password" name="password" required>
</div>
<button type="submit" class="btn btn-primary">Zarejestruj się</button>
</form>
{% endblock %}