Skip to content

Commit 06eadec

Browse files
Create login.html
1 parent 8140bd8 commit 06eadec

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

app/templates/login.html

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
{% extends "base.html" %}
2+
3+
{% block content %}
4+
<div class="login-container">
5+
<h2>Login</h2>
6+
<form method="POST">
7+
<div class="form-group">
8+
<label for="username">Username</label>
9+
<input type="text" id="username" name="username" required>
10+
</div>
11+
<div class="form-group">
12+
<label for="password">Password</label>
13+
<input type="password" id="password" name="password" required>
14+
</div>
15+
<div class="form-group">
16+
<label for="totp_token">2FA Token (if enabled)</label>
17+
<input type="text" id="totp_token" name="totp_token" placeholder="000000">
18+
</div>
19+
<button type="submit">Login</button>
20+
</form>
21+
</div>
22+
{% endblock %}

0 commit comments

Comments
 (0)