From b9e1cb23aa90de6eacdcb3e83a76f83ab72252a6 Mon Sep 17 00:00:00 2001 From: suseendhiran17 <58357088+suseendhiran17@users.noreply.github.com> Date: Tue, 20 Jun 2023 10:34:04 +0530 Subject: [PATCH] susee --- app/Views/cart.php | 4 ++-- app/Views/member_form.php | 37 ++++++++++++++++++++++++++++++++++--- 2 files changed, 36 insertions(+), 5 deletions(-) diff --git a/app/Views/cart.php b/app/Views/cart.php index c89c29d..1861d62 100644 --- a/app/Views/cart.php +++ b/app/Views/cart.php @@ -98,7 +98,7 @@
-
PST (7%)
+
PST
@@ -109,7 +109,7 @@
-
GST (5%)
+
GST
diff --git a/app/Views/member_form.php b/app/Views/member_form.php index d941ced..426b6c2 100644 --- a/app/Views/member_form.php +++ b/app/Views/member_form.php @@ -1,4 +1,22 @@ - + +
@@ -170,15 +188,16 @@
- +
-
@@ -250,6 +269,18 @@ $(document).ready(function(){ $(document).ready(function() { $('.js-example-basic-single').select2(); }); + +$("#toggle-password").click(function() { + alert() + $(this).toggleClass("fa-eye fa-eye-slash"); + var input = $($(this).attr("toggle")); + if (input.attr("type") == "password") { + input.attr("type", "text"); + } + else { + input.attr("type", "password"); + } +});