Merge branch 'master' of bitbucket.org:venbainformationtechnology/golf_backend

This commit is contained in:
suseendhiran17 2023-06-20 17:36:22 +05:30
commit f1246b220a
2 changed files with 7 additions and 5 deletions

View File

@ -16,6 +16,8 @@
</style> </style>
<link href="https://cdn.jsdelivr.net/npm/select2@4.1.0-rc.0/dist/css/select2.min.css" rel="stylesheet" />
<script src="https://cdn.jsdelivr.net/npm/select2@4.1.0-rc.0/dist/js/select2.min.js"></script>
<!-- start page title --> <!-- start page title -->
<div class="row"> <div class="row">
<div class="col-12"> <div class="col-12">
@ -100,7 +102,7 @@
<div class="form-group row"> <div class="form-group row">
<label for="inputEmail3" class="col-4 col-form-label">Country<span class="text-danger"></span></label> <label for="inputEmail3" class="col-4 col-form-label">Country<span class="text-danger"></span></label>
<div class="col-7"> <div class="col-7">
<select name="country" id="country" class="js-example-basic-single"> <select name="country" id="country" class="js-example-basic-single form-control" >
<?php if(isset($Memberdata)) { ?> <?php if(isset($Memberdata)) { ?>
<?php if ($Memberdata[0]['country'] == "" || $Memberdata[0]['country'] == "Select Country") { ?> <?php if ($Memberdata[0]['country'] == "" || $Memberdata[0]['country'] == "Select Country") { ?>
<option value="Canada"> Canada </option> <option value="Canada"> Canada </option>

View File

@ -21,10 +21,10 @@
} }
else else
{ {
if(!session()->get('logged_admin_user')) // if(!session()->get('logged_admin_user'))
{ // {
session()->destroy(); // session()->destroy();
} // }
echo base_url('membership'); echo base_url('membership');
} }