diff --git a/public/assets/css/light/main.css b/public/assets/css/light/main.css index 1deb9db..a35bfba 100644 --- a/public/assets/css/light/main.css +++ b/public/assets/css/light/main.css @@ -536,7 +536,7 @@ input[type=search]::-ms-reveal { /* Form Group Label */ .form-group label, label { font-size: 15px; - color: #090101; + color: #ff0000; letter-spacing: 1px; display: inline-block; margin-bottom: 0.5rem; diff --git a/resources/views/Admin/pages/auth/password_reset.blade.php b/resources/views/Admin/pages/auth/password_reset.blade.php index de8d6c3..01a0952 100644 --- a/resources/views/Admin/pages/auth/password_reset.blade.php +++ b/resources/views/Admin/pages/auth/password_reset.blade.php @@ -3,161 +3,291 @@ @section('content') -
-
-
- -
-
-
-
-

RESET PASSWORD

-
-
-
- - - -
-
-
-
- - -
-
-
-
- -
-
-
- - -
+/* Transition effect for smooth icon change */ +.fa-eye, +.fa-eye-slash { + transition: color 0.3s ease; +} + +/* Style for the eye icons */ +.fa-eye, +.fa-eye-slash { + cursor: pointer; + position: absolute; + right: 10px; /* Adjust horizontal alignment as needed */ + top: 50%; + transform: translateY(-50%); + z-index: 1; /* Ensure the icon is above the input */ +} + +/* Style for the eye icon when it's not showing the password */ +.fa-eye-slash { + color: #777; /* Adjust color as needed */ +} + +/* Transition effect for smooth icon change */ +.fa-eye, +.fa-eye-slash { + transition: color 0.3s ease; +} + + + + + + + + + + + + + + +
+
+
+
+ +
@endsection @section('scripts') - - - - - + + + - // $.ajaxSetup({ - // headers: { - // "X-CSRF-TOKEN": $('meta[name="csrf-token"]').attr("content"), - // }, - // }); + - // $.ajax({ - // url: base_url + '/password_update', - // type: 'POST', - // data: formData, - // processData: false, - // contentType: false, - // success: function(response) { - // if (response.status_code == 200) { - // toastr.success(response.message); - // window.location.href = base_url + "/"; - // } else if (response.status_code == 404) { - // toastr.error(response.message); - // form.reset(); - // } - // $('#password_reset').prop('disabled', false).text('Sign In'); - // }, - // error: function(xhr) { - // if (xhr.status === 422) { - // var errors = xhr.responseJSON.message; - // $.each(errors, function(index, value) { - // toastr.error(value); - // }); - // } else { - // toastr.error('An unexpected error occurred. Please try again.'); - // } - // $('#password_reset').prop('disabled', false).text('Sign In'); - // } - // }); - // } - // }); + -@endsection + + + +@endsection \ No newline at end of file