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 024ef30..ce6929a 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"); + } +});