We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8140bd8 commit 06eadecCopy full SHA for 06eadec
app/templates/login.html
@@ -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
12
+ <label for="password">Password</label>
13
+ <input type="password" id="password" name="password" required>
14
15
16
+ <label for="totp_token">2FA Token (if enabled)</label>
17
+ <input type="text" id="totp_token" name="totp_token" placeholder="000000">
18
19
+ <button type="submit">Login</button>
20
+ </form>
21
+</div>
22
+{% endblock %}
0 commit comments