mirror of
https://github.com/kanidm/kanidm.git
synced 2025-05-25 18:33:55 +02:00
26 lines
574 B
HTML
26 lines
574 B
HTML
(% extends "login_base.html" %)
|
|
|
|
(% block logincontainer %)
|
|
<label for="password" class="form-label">Password</label>
|
|
<form id="login" action="/ui/api/login_pw" method="post">
|
|
<div class="input-group mb-3">
|
|
<input
|
|
autofocus=true
|
|
class="autofocus form-control"
|
|
id="password"
|
|
name="password"
|
|
type="password"
|
|
autocomplete="current-password"
|
|
value="(( password ))"
|
|
required=true
|
|
/>
|
|
</div>
|
|
<div class="input-group mb-3 justify-content-md-center">
|
|
<button
|
|
type="submit"
|
|
class="btn btn-dark"
|
|
>Submit</button>
|
|
</div>
|
|
</form>
|
|
(% endblock %)
|