susee
This commit is contained in:
parent
8fe7f32c3f
commit
b9e1cb23aa
@ -98,7 +98,7 @@
|
||||
<div class="col-lg-2"></div>
|
||||
<?php if ($pst[0]['value'] != 0) { ?>
|
||||
<div class="col-lg-2 text-end">
|
||||
<div class="taxes pst-label">PST (7%)</div>
|
||||
<div class="taxes pst-label">PST </div>
|
||||
</div>
|
||||
<div class="col-lg-2 text-end">
|
||||
<input id="pst" value="<?= $pst[0]['value'] ?>" type="hidden">
|
||||
@ -109,7 +109,7 @@
|
||||
</div>
|
||||
<div class="col-lg-2"></div>
|
||||
<div class="col-lg-2 text-end">
|
||||
<div class="taxes gst-label">GST (5%)</div>
|
||||
<div class="taxes gst-label">GST </div>
|
||||
</div>
|
||||
<div class="col-lg-2 text-end">
|
||||
<input id="gst" value="<?= $gst[0]['value'] ?>" type="hidden">
|
||||
|
||||
@ -1,4 +1,22 @@
|
||||
<!-- start page title -->
|
||||
<style>
|
||||
.text-danger {
|
||||
color: red !important;
|
||||
}
|
||||
.parsley-errors-list>li {
|
||||
color: red !important;
|
||||
}
|
||||
.field-icon {
|
||||
float: right;
|
||||
margin-left: -35px;
|
||||
margin-top: 12px;
|
||||
margin-right: 12px;
|
||||
position: relative;
|
||||
z-index: 3;
|
||||
}
|
||||
|
||||
|
||||
</style>
|
||||
<!-- start page title -->
|
||||
<div class="row">
|
||||
<div class="col-12">
|
||||
<div class="page-title-box page-title-box-alt">
|
||||
@ -170,15 +188,16 @@
|
||||
<div class="form-group row">
|
||||
<label for="inputEmail3" class="col-4 col-form-label">Password<span class="text-danger">*</span></label>
|
||||
<div class="col-7">
|
||||
<input type="password" id="pass2" class="form-control" required
|
||||
<input type="password" id="pass2" class="form-control" pattern="(?=.*\d)(?=.*[a-z])(?=.*[A-Z])(?=.*[^a-zA-Z0-9])(?!.*\s).{8,}" required
|
||||
placeholder="Password" name="password"/>
|
||||
<span toggle="#pass2" id="toggle-password" class="fa fa-fw fa-eye field-icon toggle-password"></span>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="form-group row">
|
||||
<label for="inputEmail3" class="col-4 col-form-label">Confirm Password<span class="text-danger">*</span></label>
|
||||
<div class="col-7">
|
||||
<input type="password" class="form-control" required
|
||||
<input type="password" class="form-control" pattern="(?=.*\d)(?=.*[a-z])(?=.*[A-Z])(?=.*[^a-zA-Z0-9])(?!.*\s).{8,}" required
|
||||
data-parsley-equalto="#pass2"
|
||||
placeholder="Re-Type Password"/>
|
||||
</div>
|
||||
@ -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");
|
||||
}
|
||||
});
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user