-file-directory"> supports-preserve-symlinks-flag 30f7226d9a first commit vor 2 Jahren tailwind-color-palette 30f7226d9a first commit vor 2 Jahren tailwindcss 30f7226d9a first commit vor 2 Jahren thenify 30f7226d9a first commit vor 2 Jahren thenify-all 30f7226d9a first commit vor 2 Jahren to-regex-range 30f7226d9a first commit vor 2 Jahren tr46 30f7226d9a first commit vor 2 Jahren ts-interface-checker 30f7226d9a first commit vor 2 Jahren uglify-js 30f7226d9a first commit vor 2 Jahren underscore 30f7226d9a first commit vor 2 Jahren upper-case 30f7226d9a first commit vor 2 Jahren util-deprecate 30f7226d9a first commit vor 2 Jahren valid-data-url 30f7226d9a first commit vor 2 Jahren web-resource-inliner 30f7226d9a first commit vor 2 Jahren webidl-conversions 30f7226d9a first commit vor 2 Jahren whatwg-url 30f7226d9a first commit vor 2 Jahren wrap-ansi 30f7226d9a first commit vor 2 Jahren wrappy 30f7226d9a first commit vor 2 Jahren y18n 30f7226d9a first commit vor 2 Jahren yallist 30f7226d9a first commit vor 2 Jahren yaml 30f7226d9a first commit vor 2 Jahren yargs 30f7226d9a first commit vor 2 Jahren yargs-parser 30f7226d9a first commit vor 2 Jahren .yarn-integrity 30f7226d9a first commit vor 2 Jahren tum/coi - Gogs: Simplico Git Service

Нет описания

login.html 835B

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