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

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