| 1234567891011121314151617181920212223 |
- {% extends "base.html" %}
- {% load tailwind_filters %}
- {% block title %}Login{% endblock %}
- {% block content %}
- <div class="flex items-center justify-center h-screen bg-gray-100">
- <div class="w-full max-w-md p-8 bg-white rounded-lg shadow-md">
- <h2 class="text-2xl font-bold text-center text-gray-700">Login</h2>
- <form method="post" class="space-y-4 mt-6">
- {% csrf_token %}
- {{ form|crispy }}
- <button type="submit" class="w-full bg-blue-500 text-white py-2 rounded hover:bg-blue-600">
- Login
- </button>
- </form>
- <p class="mt-4 text-center text-gray-600">
- Don't have an account?
- <a href="{% url 'sysadmin:register' %}" class="text-blue-500 hover:underline">Register</a>
- </p>
- </div>
- </div>
- {% endblock %}
|