Move the server code inside server dir

This commit is contained in:
2025-12-18 02:17:55 +05:30
parent 2d90a4017f
commit c84866210a
32 changed files with 1 additions and 1 deletions

View File

@@ -0,0 +1,18 @@
{% extends "notes/base.html" %}
{% block title %}Login{% endblock %}
{% block body %}
<div id="header">
<h1>Appunti Login Screen</h1>
</div>
<div class="body">
{% include "notes/messages.html" %}
<form action="{% url 'login' %}" method="POST">
{% csrf_token %}
<h2>Welcome!</h2>
<p>Please login to continue</p>
{{ form.as_p }}
<button type="submit">Login</button>
</form>
</div>
{% endblock %}