diff --git a/app/templates/base.html b/app/templates/base.html index d8a7da9..ff02cc8 100644 --- a/app/templates/base.html +++ b/app/templates/base.html @@ -17,7 +17,7 @@ {% block extra_head %}{% endblock %} - + {% block navbar %} + {% endblock %}
diff --git a/app/templates/login.html b/app/templates/login.html index f276162..9eed582 100644 --- a/app/templates/login.html +++ b/app/templates/login.html @@ -2,6 +2,8 @@ {% block title %}Login - Delphi Database{% endblock %} +{% block navbar %}{% endblock %} + {% block content %}
diff --git a/static/css/custom.css b/static/css/custom.css index 75c8cf6..de25734 100644 --- a/static/css/custom.css +++ b/static/css/custom.css @@ -15,6 +15,12 @@ body { align-items: center; justify-content: center; padding: 32px 16px; + width: 100%; /* allow Bootstrap grid to expand normally */ +} + +/* Ensure inner row spans available width when parent is flex */ +.auth-wrapper > .row { + width: 100%; } /* Enhanced card styling for login */ @@ -24,10 +30,10 @@ body { /* Logo styling */ .card .card-body .text-center img { - border-radius: 50%; - background: white; - padding: 10px; - box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); + border-radius: 0; /* show the raw logo */ + background: transparent; + padding: 0; + box-shadow: none; } /* Input group styling */