feat: base layout and auth/dashboard templates

This commit is contained in:
2026-03-17 19:08:46 -04:00
parent 6ca25e94a0
commit 686fc2b1e1
4 changed files with 111 additions and 4 deletions
+20 -1
View File
@@ -1 +1,20 @@
{% extends "base.html" %}{% block content %}login{% endblock %}
{% extends "base.html" %}
{% block title %}Login — FabledNetMon{% endblock %}
{% block content %}
<div style="max-width:400px;margin:4rem auto;">
<div class="card">
<h2 style="margin-bottom:1.5rem;color:#c0c0ff;">Sign In</h2>
<form method="post" action="/login">
<div class="form-group">
<label>Username</label>
<input type="text" name="username" autofocus required>
</div>
<div class="form-group">
<label>Password</label>
<input type="password" name="password" required>
</div>
<button type="submit">Sign In</button>
</form>
</div>
</div>
{% endblock %}