Initial commit
This commit is contained in:
commit
983cee0320
322 changed files with 57174 additions and 0 deletions
25
backup/first -fina app/app/templates/verify_login.html
Executable file
25
backup/first -fina app/app/templates/verify_login.html
Executable file
|
|
@ -0,0 +1,25 @@
|
|||
{% extends "base.html" %}
|
||||
|
||||
{% block title %}Verify Login - Finance Tracker{% endblock %}
|
||||
|
||||
{% block content %}
|
||||
<div class="auth-container">
|
||||
<div class="glass-card auth-card">
|
||||
<h1>🔐 Two-Factor Authentication</h1>
|
||||
<p class="subtitle">Enter the code from your authenticator app</p>
|
||||
|
||||
<form method="POST" class="auth-form">
|
||||
<input type="hidden" name="csrf_token" value="{{ csrf_token() }}">
|
||||
|
||||
<div class="form-group">
|
||||
<label for="token">6-digit code</label>
|
||||
<input type="text" id="token" name="token" required pattern="[0-9]{6}" maxlength="6" autofocus>
|
||||
</div>
|
||||
|
||||
<button type="submit" class="btn btn-primary">Verify</button>
|
||||
</form>
|
||||
|
||||
<p class="auth-link"><a href="{{ url_for('auth.login') }}">Back to login</a></p>
|
||||
</div>
|
||||
</div>
|
||||
{% endblock %}
|
||||
Loading…
Add table
Add a link
Reference in a new issue