mirror of
https://github.com/kanidm/kanidm.git
synced 2025-02-24 13:07:00 +01:00
* Add htmx Apps page with halfworking navbar Co-authored-by: Firstyear <william@blackhats.net.au>
24 lines
981 B
HTML
24 lines
981 B
HTML
<div class="modal" tabindex="-1" role="dialog" id="signoutModal">
|
|
<div class="modal-dialog" role="document">
|
|
<div class="modal-content">
|
|
<div class="modal-header">
|
|
<h5 class="modal-title">Confirm Sign out</h5>
|
|
</div>
|
|
<div class="modal-body text-center">
|
|
Are you sure you'd like to log out?
|
|
<br/>
|
|
<img src="/pkg/img/kani-waving.svg" alt="Kani waving goodbye" />
|
|
</div>
|
|
<div class="modal-footer">
|
|
<a href="/ui/logout" hx-boost="false">
|
|
<button type="button" class="btn btn-success"
|
|
data-bs-toggle="modal"
|
|
data-bs-target="#signoutModal">Sign out</button>
|
|
</a>
|
|
|
|
<button type="button" class="btn btn-secondary"
|
|
data-bs-dismiss="modal">Cancel</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div> |