suresh
This commit is contained in:
parent
f036957609
commit
137532b690
@ -19,7 +19,7 @@ class App extends BaseConfig
|
|||||||
*/
|
*/
|
||||||
// public string $baseURL = 'https://mprkv.co.in/devbook';
|
// public string $baseURL = 'https://mprkv.co.in/devbook';
|
||||||
|
|
||||||
public string $baseURL = 'http://localhost/golf_backend';
|
public string $baseURL = 'http://localhost/golf_backend';
|
||||||
// public string $baseURL = 'http://localhost:88/golf_backend';
|
// public string $baseURL = 'http://localhost:88/golf_backend';
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@ -24,61 +24,6 @@
|
|||||||
<link rel="stylesheet" href="<?= base_url()."/public/"; ?>assets/member_css/intlTelInput.css">
|
<link rel="stylesheet" href="<?= base_url()."/public/"; ?>assets/member_css/intlTelInput.css">
|
||||||
<script src="<?= base_url()."/public/"; ?>assets/member_js/intlTelInput.js"></script>
|
<script src="<?= base_url()."/public/"; ?>assets/member_js/intlTelInput.js"></script>
|
||||||
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery.inputmask/3.3.4/jquery.inputmask.bundle.min.js"></script>
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery.inputmask/3.3.4/jquery.inputmask.bundle.min.js"></script>
|
||||||
|
|
||||||
<style>
|
|
||||||
.custom-alert {
|
|
||||||
position: fixed;
|
|
||||||
top: 50%;
|
|
||||||
left: 50%;
|
|
||||||
transform: translate(-50%, -50%);
|
|
||||||
padding: 20px;
|
|
||||||
background-color: #ffffff;
|
|
||||||
border: 1px solid #ddd;
|
|
||||||
border-radius: 4px;
|
|
||||||
box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.2);
|
|
||||||
z-index: 9999;
|
|
||||||
}
|
|
||||||
|
|
||||||
.custom-alert h2 {
|
|
||||||
margin-top: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.custom-alert p {
|
|
||||||
margin-bottom: -20px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.custom-alert .close-btn {
|
|
||||||
position: absolute;
|
|
||||||
top: 2px;
|
|
||||||
right: 10px;
|
|
||||||
cursor: pointer;
|
|
||||||
font-size: 26px;
|
|
||||||
}
|
|
||||||
.button-popup {
|
|
||||||
background-color: #4CAF50; /* Green */
|
|
||||||
border: none;
|
|
||||||
color: white;
|
|
||||||
padding: 1px 20px;
|
|
||||||
text-align: center;
|
|
||||||
text-decoration: none;
|
|
||||||
display: inline-block;
|
|
||||||
font-size: 16px;
|
|
||||||
margin: 4px 2px;
|
|
||||||
cursor: pointer;
|
|
||||||
align:center;
|
|
||||||
|
|
||||||
margin-left: 40%;
|
|
||||||
}
|
|
||||||
.field-icon {
|
|
||||||
float: right;
|
|
||||||
margin-left: -35px;
|
|
||||||
margin-top: 20px;
|
|
||||||
margin-right: 12px;
|
|
||||||
position: relative;
|
|
||||||
z-index: 3;
|
|
||||||
}
|
|
||||||
|
|
||||||
</style>
|
|
||||||
</head>
|
</head>
|
||||||
<body class="memberaccess">
|
<body class="memberaccess">
|
||||||
<?php include 'member_layout/header.php' ?>
|
<?php include 'member_layout/header.php' ?>
|
||||||
@ -667,9 +612,8 @@ function closeCustomAlert() {
|
|||||||
</script>
|
</script>
|
||||||
<div id="customAlert" class="custom-alert">
|
<div id="customAlert" class="custom-alert">
|
||||||
<span class="close-btn" onclick="closeCustomAlert()">×</span>
|
<span class="close-btn" onclick="closeCustomAlert()">×</span>
|
||||||
<p>Are you sure you want to sign out</p>
|
<p class="mb-3">Are you sure you want to sign out</p>
|
||||||
<br>
|
<a href="<?=base_url()."member_logout"; ?>" class="button-popup">OK</a>
|
||||||
<a href="<?=base_url()."member_logout"; ?>"><button class="button-popup" style="background-color: #008CBA;">ok</button></a>
|
|
||||||
</div>
|
</div>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
@ -394,6 +394,7 @@ body.cart .quantity{
|
|||||||
border-width: 0;
|
border-width: 0;
|
||||||
padding: 0;
|
padding: 0;
|
||||||
line-height: 28px;
|
line-height: 28px;
|
||||||
|
font-size: 20px;
|
||||||
}
|
}
|
||||||
.quantity .plus{
|
.quantity .plus{
|
||||||
top:-2px;
|
top:-2px;
|
||||||
@ -1364,6 +1365,54 @@ body.checkout .select2-container--default .select2-selection--single .select2-s
|
|||||||
padding:30px 30px 20px;
|
padding:30px 30px 20px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.memberaccess .custom-alert {
|
||||||
|
position: fixed;
|
||||||
|
top: 50%;
|
||||||
|
left: 50%;
|
||||||
|
transform: translate(-50%, -50%);
|
||||||
|
padding:35px 20px 20px;
|
||||||
|
background-color: #ffffff;
|
||||||
|
border: 1px solid #ddd;
|
||||||
|
border-radius:5px;
|
||||||
|
box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.2);
|
||||||
|
z-index: 9999;
|
||||||
|
text-align:center;
|
||||||
|
}
|
||||||
|
|
||||||
|
.memberaccess .custom-alert h2 {
|
||||||
|
margin-top: 0;
|
||||||
|
}
|
||||||
|
.memberaccess .custom-alert .close-btn {
|
||||||
|
position: absolute;
|
||||||
|
top: 5px;
|
||||||
|
right: 15px;
|
||||||
|
cursor: pointer;
|
||||||
|
font-size:30px;
|
||||||
|
}
|
||||||
|
.memberaccess .custom-alert .close-btn:hover{
|
||||||
|
color:var(--pink-color);
|
||||||
|
}
|
||||||
|
.memberaccess .button-popup {
|
||||||
|
background-color: var(--blue-color);
|
||||||
|
border: none;
|
||||||
|
color: #ffffff;
|
||||||
|
padding: 3px 25px;
|
||||||
|
display: inline-block;
|
||||||
|
cursor: pointer;
|
||||||
|
border-radius: 5px;
|
||||||
|
}
|
||||||
|
.memberaccess .button-popup:hover{
|
||||||
|
background-color:var(--pink-color);
|
||||||
|
}
|
||||||
|
.memberaccess .field-icon {
|
||||||
|
float: right;
|
||||||
|
margin-left: -35px;
|
||||||
|
margin-top: 20px;
|
||||||
|
margin-right: 12px;
|
||||||
|
position: relative;
|
||||||
|
z-index: 3;
|
||||||
|
}
|
||||||
|
|
||||||
@media (max-width: 992px){
|
@media (max-width: 992px){
|
||||||
.tab, .tabcontent {
|
.tab, .tabcontent {
|
||||||
width:100%;
|
width:100%;
|
||||||
@ -1468,10 +1517,8 @@ body.checkout .select2-container--default .select2-selection--single .select2-s
|
|||||||
font-size: 22px;
|
font-size: 22px;
|
||||||
color: #21BB5E;
|
color: #21BB5E;
|
||||||
}
|
}
|
||||||
.table-design tr:nth-child(1){
|
.table-design tbody tr:nth-child(even), .table-design thead tr{
|
||||||
background: #F9FBFC;
|
background: #F9FBFC;
|
||||||
border-radius: 10px 10px 0px 0px;
|
|
||||||
line-height: 5;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.table-design p:nth-child(1){
|
.table-design p:nth-child(1){
|
||||||
@ -1826,11 +1873,12 @@ body.checkout .select2-container--default .select2-selection--single .select2-s
|
|||||||
}
|
}
|
||||||
#pagesControllers button{
|
#pagesControllers button{
|
||||||
padding:2px 8px;
|
padding:2px 8px;
|
||||||
margin:0 5px;
|
margin:10px 5px;
|
||||||
border-width:0;
|
border-width:0;
|
||||||
background:transparent;
|
background:transparent;
|
||||||
border-radius:5px;
|
border-radius:5px;
|
||||||
width:35px;
|
width:35px;
|
||||||
|
font-size: 19px;
|
||||||
}
|
}
|
||||||
#pagesControllers .currentPage, #pagesControllers button:hover{
|
#pagesControllers .currentPage, #pagesControllers button:hover{
|
||||||
background:#002b60;
|
background:#002b60;
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user