This commit is contained in:
suresh 2023-06-23 12:41:33 +05:30
parent 82771e0e9a
commit d0415328fe
4 changed files with 21 additions and 18 deletions

View File

@ -19,8 +19,8 @@ class App extends BaseConfig
*/
// public string $baseURL = 'https://mprkv.co.in/devbook';
public string $baseURL = 'http://localhost/golf_backend';
// public string $baseURL = 'http://localhost:88/golf_backend';
// public string $baseURL = 'http://localhost/golf_backend';
public string $baseURL = 'http://localhost:88/golf_backend';

View File

@ -58,7 +58,7 @@
} else {
echo $pack_id[$key]['count'];
}
?>" title="Qty" size="4" min="1" max="" step="1" placeholder="" inputmode="numeric" autocomplete="off"/>
?>" title="Qty" size="4" min="1" max="" step="1" placeholder="" inputmode="numeric" autocomplete="off" disabled/>
<button type="button" class="plus"><i class="fa fa-angle-up"></i></button>
<button type="button" class="minus"><i class="fa fa-angle-down"></i></button> </div>
</div>

View File

@ -26,7 +26,7 @@
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery.inputmask/3.3.4/jquery.inputmask.bundle.min.js"></script>
<style>
.custom-alert {
.custom-alert {
position: fixed;
top: 50%;
left: 50%;
@ -301,20 +301,20 @@
</div>
<div class="col-6 col-lg-6"></div>
<div class="col-6 col-lg-6 mb-3">
<div class="col-12 col-lg-6 mb-3">
<label for="first_name">First Name</label><br>
<input type="text" name="name" id="first_name" value="<?= $profile[0]['name']?>"/>
</div>
<div class="col-6 col-lg-6 mb-3">
<div class="col-12 col-lg-6 mb-3">
<label for="last_name">Last Name</label><br>
<input type="text" name="last_name" id="last_name" value="<?= $profile[0]['last_name']?>" />
</div>
<div class="col-6 col-lg-6 mb-3">
<div class="col-12 col-lg-6 mb-3">
<label for="street_address">Mobile</label><br>
<!-- id="phone" type="tel" name="phone" -->
<input type="tel" name="mobile" id="mobile" value="<?= $profile[0]['mobile']?>"/>
</div>
<div class="col-6 col-lg-6">
<div class="col-12 col-lg-6 mb-3">
<label>Select your gender</label>
<div class="row mt-1">
<div class="col-6 col-lg-5"><input type="radio" name="gender" value="male" id="gender" <?php if($profile[0]['gender'] == 'male') { echo 'checked';} ?>><label for="male">Male</label></div>
@ -323,19 +323,19 @@
<div class="col-6 col-lg-7"><input type="radio" name="gender" value="non-binary" id="gender" <?php if($profile[0]['gender'] == 'non-binary') { echo 'checked';} ?>><label for="non-binary">Prefer not to say</label></div>
</div>
</div>
<div class="col-6 col-lg-6 mb-3">
<div class="col-12 col-lg-6 mb-3">
<label for="street_address">Street Address</label><br>
<input type="text" name="address" id="street_address" value="<?= $profile[0]['address']?>">
</div>
<div class="col-4 col-lg-6 mb-3">
<div class="col-12 col-lg-6 mb-3">
<label for="city">City</label><br>
<input type="text" name="city" id="city" value="<?= $profile[0]['city']?>">
</div>
<div class="col-4 col-lg-4 mb-3">
<div class="col-12 col-lg-4 mb-3">
<label for="state">Province</label><br>
<input type="text" name="state" id="state" value="<?= $profile[0]['state']?>">
</div>
<div class="col-4 col-lg-4 mb-3">
<div class="col-12 col-lg-4 mb-3">
<label for="country">Country</label><br>
<select name="country" id="country" class="js-example-basic-single">
<?php if(isset($profile)) { ?>
@ -354,7 +354,7 @@
<?php } ?>
</select>
</div>
<div class="col-4 col-lg-4 mb-3">
<div class="col-12 col-lg-4 mb-3">
<label for="zipcode">Postal Code</label><br>
<input type="text" name="pincode" id="pincode" value="<?= $profile[0]['pincode']?>">
<!-- <select name="pincode" id="pincode" class="js-example-basic-single">
@ -362,7 +362,7 @@
<?= $zipcode ?>
</select> -->
</div>
<div class="col-6 col-lg-6">
<div class="col-12 col-lg-6">
<div id="address-btn" class="custom-btn">save</div>
<div class="success-message" style="display:none;">Successfully Saved</div>
</div>
@ -376,7 +376,7 @@
<h3>Change Password</h3>
<div class="col-6 col-lg-6 mb-3">
<div class="col-12 col-lg-6 mb-3">
<label for="old_password">Old Password</label><br>
<input type="password" name="old_password" id="old_password" required>
<span toggle="#old_password" id="toggle-password" class="fa fa-fw fa-eye field-icon toggle-password"></span>
@ -384,7 +384,7 @@
<span style="display:none;" id="error_op"></span>
</div>
<div class="col-6 col-lg-6"></div>
<div class="col-6 col-lg-6 mb-3 show-password1">
<div class="col-12 col-lg-6 mb-3 show-password1">
<label for="new_password">New Password</label><br>
<span toggle="#new_password" id="toggle-password1" class="fa fa-fw fa-eye field-icon toggle-password"></span>
<input type="password" name="password" id="new_password"
@ -404,7 +404,7 @@
</div>
</div>
<div class="col-6 col-lg-6"></div>
<div class="col-6 col-lg-6 mb-3">
<div class="col-12 col-lg-6 mb-3">
<label for="confirm_password">Confirm Password</label><br>
<span toggle="#new_password" id="toggle-password2" class="fa fa-fw fa-eye field-icon toggle-password"></span>
<input type="password" name="confirm_password" id="confirm_password" required>
@ -412,7 +412,7 @@
</div>
<div class="col-6 col-lg-6"></div>
<div class="col-6 col-lg-6">
<div class="col-12 col-lg-6">
<div id="pass-btn" type="submit" class="custom-btn">Update</div>
<!-- <div class="success-message" style="display:none;">Successfully Saved</div> -->
</div>

View File

@ -197,6 +197,9 @@ a{
@media (max-width: 992px){
.header, #demo {
display: none;
}
.button-menu{
margin-left: -15px;
}
}
#demo{