1
0
mirror of https://github.com/tabler/tabler.git synced 2025-12-26 19:26:10 +04:00
Files
tabler/shared/includes/cards/auth-lock.html
2025-04-15 23:18:49 +02:00

22 lines
703 B
HTML

{% assign person = people[0] %}
<form class="card card-md" action="{{ page | relative }}/" method="get" autocomplete="off" novalidate>
<div class="card-body text-center">
<div class="mb-4">
<h2 class="card-title">Account Locked</h2>
<p class="text-secondary">Please enter your password to unlock your account</p>
</div>
<div class="mb-4">
{% include "ui/avatar.html" person=person size="xl" class="mb-3" %}
<h3>{{ person.full_name }}</h3>
</div>
<div class="mb-4">
<input type="password" class="form-control" placeholder="Password&hellip;">
</div>
<div>
{% include "ui/button.html" color="primary" block=true icon="lock-open" text="Unlock" %}
</div>
</div>
</form>