/node_modules/caniuse-lite/data/regions/RS.js">RS.js 77628cf8bf first comm 2 years ago RU.js 77628cf8bf first comm 2 years ago RW.js 77628cf8bf first comm 2 years ago SA.js 77628cf8bf first comm 2 years ago SB.js 77628cf8bf first comm 2 years ago SC.js 77628cf8bf first comm 2 years ago SD.js 77628cf8bf first comm 2 years ago SE.js 77628cf8bf first comm 2 years ago SG.js 77628cf8bf first comm 2 years ago SH.js 77628cf8bf first comm 2 years ago SI.js 77628cf8bf first comm 2 years ago SK.js 77628cf8bf first comm 2 years ago SL.js 77628cf8bf first comm 2 years ago SM.js 77628cf8bf first comm 2 years ago SN.js 77628cf8bf first comm 2 years ago SO.js 77628cf8bf first comm 2 years ago SR.js 77628cf8bf first comm 2 years ago ST.js 77628cf8bf first comm 2 years ago SV.js 77628cf8bf first comm 2 years ago SY.js 77628cf8bf first comm 2 years ago SZ.js 77628cf8bf first comm 2 years ago TC.js 77628cf8bf first comm 2 years ago TD.js 77628cf8bf first comm 2 years ago TG.js 77628cf8bf first comm 2 years ago TH.js 77628cf8bf first comm 2 years ago TJ.js 77628cf8bf first comm 2 years ago TK.js 77628cf8bf first comm 2 years ago TL.js 77628cf8bf first comm 2 years ago TM.js 77628cf8bf first comm 2 years ago TN.js 77628cf8bf first comm 2 years ago TO.js 77628cf8bf first comm 2 years ago TR.js 77628cf8bf first comm 2 years ago TT.js 77628cf8bf first comm 2 years ago TV.js 77628cf8bf first comm 2 years ago TW.js 77628cf8bf first comm 2 years ago TZ.js 77628cf8bf first comm 2 years ago UA.js 77628cf8bf first comm 2 years ago UG.js 77628cf8bf first comm 2 years ago US.js 77628cf8bf first comm 2 years ago UY.js 77628cf8bf first comm 2 years ago UZ.js 77628cf8bf first comm 2 years ago VA.js 77628cf8bf first comm 2 years ago VC.js 77628cf8bf first comm 2 years ago VE.js 77628cf8bf first comm 2 years ago VG.js 77628cf8bf first comm 2 years ago VI.js 77628cf8bf first comm 2 years ago VN.js 77628cf8bf first comm 2 years ago VU.js 77628cf8bf first comm 2 years ago WF.js 77628cf8bf first comm 2 years ago WS.js 77628cf8bf first comm 2 years ago YE.js 77628cf8bf first comm 2 years ago YT.js 77628cf8bf first comm 2 years ago ZA.js 77628cf8bf first comm 2 years ago ZM.js 77628cf8bf first comm 2 years ago ZW.js 77628cf8bf first comm 2 years ago alt-af.js 77628cf8bf first comm 2 years ago alt-an.js 77628cf8bf first comm 2 years ago alt-as.js 77628cf8bf first comm 2 years ago alt-eu.js 77628cf8bf first comm 2 years ago alt-na.js 77628cf8bf first comm 2 years ago alt-oc.js 77628cf8bf first comm 2 years ago alt-sa.js 77628cf8bf first comm 2 years ago alt-ww.js 77628cf8bf first comm 2 years ago tum/coi - Gogs: Simplico Git Service

Açıklama Yok

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 %}