morning changes

This commit is contained in:
2025-12-15 06:14:07 -08:00
parent 934e134941
commit 7b064eb6da
27 changed files with 127 additions and 21 deletions

View File

@@ -0,0 +1,23 @@
{% extends '@novaconium/master.html.twig' %}
{% block content %}
<h1>{{title}}</h1>
<div id="login">
<form method="post" action="/novaconium/login">
<input type="hidden" name="token" value="{{ token }}" />
<label for="username">Username:</label><br>
<input type="text" id="username" name="username" required><br><br>
<label for="password">Password:</label><br>
<input type="password" id="password" name="password" required><br><br>
<button type="submit">Login</button>
</form>
</div>
{% endblock %}