-
+/* 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;
+}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
RESET PASSWORD
+
+
+
+
+
+
+
+
+
@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