diff --git a/web-app/django/VIM/templates/main/registration/resetPassword.html b/web-app/django/VIM/templates/main/registration/resetPassword.html
index 2d099bc..4810355 100644
--- a/web-app/django/VIM/templates/main/registration/resetPassword.html
+++ b/web-app/django/VIM/templates/main/registration/resetPassword.html
@@ -4,42 +4,23 @@
Reset Password
{% endblock registration_title %}
-{% block registration_content %}
-
-
- {% if form.errors %}
-
- {% for field, error in form.errors.items %}{{ error }}{% endfor %}
-
- {% endif %}
-
-
-
-
- Reset Password
-
-
- Forgotten your password?
-
- Enter your email address below, and we'll email instructions for setting a new one.
-
-
-
-
-
+{% block left_column %}
+
+ Reset Password
+
+
+ Forgotten your password?
+
+ Enter your email address below, and we'll email instructions for setting a new one.
+
+
-{% endblock registration_content %}
+
+
+{% endblock left_column %}
diff --git a/web-app/django/VIM/templates/main/registration/resetPasswordComplete.html b/web-app/django/VIM/templates/main/registration/resetPasswordComplete.html
index 0b17e5b..565493d 100644
--- a/web-app/django/VIM/templates/main/registration/resetPasswordComplete.html
+++ b/web-app/django/VIM/templates/main/registration/resetPasswordComplete.html
@@ -4,19 +4,11 @@
Reset Password
{% endblock registration_title %}
-{% block registration_content %}
-
-{% endblock registration_content %}
+{% block left_column %}
+
+ Password Reset Complete
+
+
+ Your password has been successfully reset. You can now log in with your new password.
+
+{% endblock left_column %}
diff --git a/web-app/django/VIM/templates/main/registration/resetPasswordDone.html b/web-app/django/VIM/templates/main/registration/resetPasswordDone.html
index 7087a5f..fe5066f 100644
--- a/web-app/django/VIM/templates/main/registration/resetPasswordDone.html
+++ b/web-app/django/VIM/templates/main/registration/resetPasswordDone.html
@@ -4,26 +4,11 @@
Reset Password
{% endblock registration_title %}
-{% block registration_content %}
-
-
- {% if form.errors %}
-
- {% for field, error in form.errors.items %}{{ error }}{% endfor %}
-
- {% endif %}
-
-
-
-
- Password Reset Email Sent
-
-
- We've sent you an email with instructions to reset your password. Please check your inbox.
-
-
-
-
-
-
-{% endblock registration_content %}
+{% block left_column %}
+
+ Password Reset Email Sent
+
+
+ We've sent you an email with instructions to reset your password. Please check your inbox.
+
+{% endblock left_column %}
diff --git a/web-app/frontend/assets/css/main/index.css b/web-app/frontend/assets/css/main/index.css
index c62053f..cad5590 100644
--- a/web-app/frontend/assets/css/main/index.css
+++ b/web-app/frontend/assets/css/main/index.css
@@ -35,7 +35,7 @@
}
.content-container {
- height: 80vh;
+ min-height: 80vh;
position: relative;
}
@@ -75,3 +75,27 @@
color: #435334;
animation: pulse 0.5s both;
}
+
+/* Mobile */
+@media (max-width: 768px) {
+ .content-container h1 {
+ font-size: 2rem;
+ margin-bottom: 2rem;
+ line-height: 1.5;
+ }
+
+ .content-container p {
+ font-size: 1rem;
+ margin-bottom: 2rem;
+ line-height: 2;
+ }
+
+ #bg-decor {
+ position: fixed;
+ bottom: 25%;
+ left: 0;
+ width: 100%;
+ max-height: 45vh;
+ object-fit: contain;
+ }
+}
diff --git a/web-app/frontend/assets/css/main/login.css b/web-app/frontend/assets/css/main/login.css
index 4f7e454..d4c858f 100644
--- a/web-app/frontend/assets/css/main/login.css
+++ b/web-app/frontend/assets/css/main/login.css
@@ -1,14 +1,13 @@
.content-container {
- height: 80vh;
- width: 80vw;
+ min-height: 80vh;
+ min-width: 80vw;
}
.account-container {
background-color: white;
border: 3px solid #9eb384;
border-radius: 30px;
- height: 60vh;
- min-height: 400px;
+ min-height: 60vh;
position: relative;
color: #435334;
}