Skip to content

Commit

Permalink
style: Update images for login, signup, and password reset pages
Browse files Browse the repository at this point in the history
  • Loading branch information
erfanghorbanee committed Sep 3, 2024
1 parent b7a0059 commit 98da993
Show file tree
Hide file tree
Showing 12 changed files with 1,152 additions and 9 deletions.
2 changes: 0 additions & 2 deletions Django-Shop/static/login/css/styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,4 @@
.login-container img.img-fluid {
max-width: 80%; /* Ensure the image is responsive */
height: auto; /* Maintain aspect ratio */
border-radius: 10px; /* Optional: Add rounded corners */
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); /* Optional: Add a soft shadow */
}
Binary file removed Django-Shop/static/login/images/login-image.jpg
Binary file not shown.
452 changes: 452 additions & 0 deletions Django-Shop/static/login/images/login-image.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 0 additions & 2 deletions Django-Shop/static/password_reset/css/styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,4 @@
.reset-password-container img.img-fluid {
max-width: 80%; /* Ensure the image is responsive */
height: auto; /* Maintain aspect ratio */
border-radius: 10px; /* Optional: Add rounded corners */
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); /* Optional: Add a soft shadow */
}
Binary file not shown.
292 changes: 292 additions & 0 deletions Django-Shop/static/password_reset/images/password_reset.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 0 additions & 2 deletions Django-Shop/static/signup/css/styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -103,6 +103,4 @@
.signup-container img.img-fluid {
max-width: 80%; /* Ensure the image is responsive */
height: auto; /* Maintain aspect ratio */
border-radius: 10px; /* Optional: Add rounded corners */
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); /* Optional: Add a soft shadow */
}
Binary file removed Django-Shop/static/signup/images/signup-image.jpg
Binary file not shown.
405 changes: 405 additions & 0 deletions Django-Shop/static/signup/images/signup-image.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion Django-Shop/templates/account/login.html
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
<div class="row">
<!-- Left Side - Image -->
<div class="col-md-6 d-none d-md-flex align-items-center justify-content-center">
<img src="{% static 'login/images/login-image.jpg' %}" alt="Login Illustration" class="img-fluid">
<img src="{% static 'login/images/login-image.svg' %}" alt="Login Illustration" class="img-fluid">
</div>

<!-- Right Side - Form -->
Expand Down
2 changes: 1 addition & 1 deletion Django-Shop/templates/account/password_reset.html
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
<div class="row">
<!-- Left Side - Image -->
<div class="col-md-6 d-none d-md-flex align-items-center justify-content-center">
<img src="{% static 'password_reset/images/password_reset.jpg' %}" alt="Password Reset Illustration" class="img-fluid">
<img src="{% static 'password_reset/images/password_reset.svg' %}" alt="Password Reset Illustration" class="img-fluid">
</div>

<!-- Right Side - Form -->
Expand Down
2 changes: 1 addition & 1 deletion Django-Shop/templates/account/signup.html
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
<div class="row">
<!-- Left Side - Image -->
<div class="col-md-6 d-none d-md-flex align-items-center justify-content-center">
<img src="{% static 'signup/images/signup-image.jpg' %}" alt="Sign up Illustration" class="img-fluid">
<img src="{% static 'signup/images/signup-image.svg' %}" alt="Sign up Illustration" class="img-fluid">
</div>

<!-- Right Side - Form -->
Expand Down

0 comments on commit 98da993

Please sign in to comment.