diff --git a/SMS/settings.py b/SMS/settings.py index 4b2444b..1ddddd2 100644 --- a/SMS/settings.py +++ b/SMS/settings.py @@ -45,8 +45,8 @@ DJANGO_APPS = [ "django.contrib.staticfiles", ] -# Thired party apps -THIRED_PARTY_APPS = [ +# Third party apps +THIRD_PARTY_APPS = [ "crispy_forms", "rest_framework", ] @@ -63,7 +63,7 @@ PROJECT_APPS = [ ] # Combine all apps -INSTALLED_APPS = DJANGO_APPS + THIRED_PARTY_APPS + PROJECT_APPS +INSTALLED_APPS = DJANGO_APPS + THIRD_PARTY_APPS + PROJECT_APPS MIDDLEWARE = [ "django.middleware.security.SecurityMiddleware", diff --git a/static/css/style.css b/static/css/style.css index 4cdd70c..002eb80 100644 --- a/static/css/style.css +++ b/static/css/style.css @@ -1840,6 +1840,16 @@ a { margin-right: 1rem; } +#login .login-bottom { + display: flex; + justify-content: space-between; + padding: 0 18px 0 18px; +} + +#login .login-bottom > * { + margin: 0; +} + /* ################################################################################################# */ .score-wrapper { position: relative; diff --git a/templates/registration/login.html b/templates/registration/login.html index 6d476d5..76aabdd 100644 --- a/templates/registration/login.html +++ b/templates/registration/login.html @@ -4,7 +4,10 @@ {% block content %}