Files
gpodder-rs/templates/account.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
449 B
Plaintext

{% extends "_layout" %}
{% block content %}
<form class="p-4 d-flex container-fluid" method="POST" action="/update_password">
<div>
<label for="pass" class="form-label">Update Password</label>
</div>
<div class="flex-grow-1 mx-4">
<input type="password" class="form-control" id="pass" name="password">
</div>
<div>
<button type="submit" class="btn btn-primary">Update Password</button>
</div>
</form>
{% endblock content %}