14 lines
588 B
Plaintext
14 lines
588 B
Plaintext
{{define "content"}}
|
|
<div class="mb-4">
|
|
<h2 class="fw-bold mb-0"><i class="ti ti-shield-check me-2"></i>Verify OTP</h2>
|
|
</div>
|
|
{{with .Content}}{{with .Error}}<div class="alert alert-danger">{{.}}</div>{{end}}{{end}}
|
|
<form method="post">
|
|
<div class="mb-4">
|
|
<label class="form-label"><i class="ti ti-keyboard me-2"></i>6-digit code</label>
|
|
<input type="text" class="form-control form-control-lg" name="code" inputmode="numeric" required>
|
|
</div>
|
|
<button type="submit" class="btn btn-primary btn-lg w-100"><i class="ti ti-lock-check me-2"></i>Unlock</button>
|
|
</form>
|
|
{{end}}
|