Files
appunti/notes/templates/registration/login.html
2025-12-10 18:28:07 +05:30

20 lines
422 B
HTML

{% extends "notes/base.html" %}
{% block title %}Login{% endblock %}
{% block body %}
<div id="header">
<h1>Appunti Login Screen</h1>
</div>
<div class="body">
<div class="login">
<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>
</div>
{% endblock %}