Files
gpodder-rs/templates/login.html.tera
Matthew Pomes f859f8f34b
Some checks failed
Cargo Build & Test / Rust project - latest (stable) (push) Failing after 23s
Cargo Build & Test / Rust project - latest (beta) (push) Failing after 35s
Cargo Build & Test / Rust project - latest (nightly) (push) Failing after 33s
Add initial setup and admin page
2025-10-04 16:04:19 -05:00

16 lines
515 B
Plaintext

{% extends "_layout" %}
{% block content %}
<form class="m-3" method="POST" action="/login">
<div class="mb-3">
<label for="user" class="form-label">Username</label>
<input type="username" class="form-control" id="user" name="username">
</div>
<div class="mb-3">
<label for="pass" class="form-label">Password</label>
<input type="password" class="form-control" id="pass" name="password">
</div>
<button type="submit" class="btn btn-primary">Submit</button>
</form>
{% endblock content %}