listing changes
This commit is contained in:
parent
58d05e70c4
commit
f34ad5968f
@ -52,20 +52,19 @@ class Dashboard_Controller extends BaseController
|
|||||||
$CountryMasterDatas =
|
$CountryMasterDatas =
|
||||||
array( 'CountryName'=>$this->input->post('CountryName'),
|
array( 'CountryName'=>$this->input->post('CountryName'),
|
||||||
'CapitalCity'=>$this->input->post('CapitalCity'),
|
'CapitalCity'=>$this->input->post('CapitalCity'),
|
||||||
'CountryDescription'=>$this->input->post('Editor'));
|
'CountryDescription'=>$this->input->post('Editor'),
|
||||||
|
'IsActive'=>$this->input->post('IsActive') != '' ? 1 : 0);
|
||||||
|
|
||||||
|
|
||||||
$Added = $this->Dashboard_Model->Add_CountryMaster($CountryMasterDatas);
|
$Added = $this->Dashboard_Model->Add_CountryMaster($CountryMasterDatas);
|
||||||
|
|
||||||
// echo $Added;
|
|
||||||
if( $Added != "" ){
|
if( $Added != "" ){
|
||||||
// "<script type='text/javascript'>alert(".$Added."'Saved Successfully!');</script>";
|
echo "<script>alert('Created Successfully ! Country Code:$Added'); window.location.href='country_master';</script>";
|
||||||
echo "<script>alert('Successfully Created Country Code:$Added'); window.location.href='country_master';</script>";
|
|
||||||
// redirect ( 'country_master' );
|
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
echo "<script>alert('Unsuccessfully Not Created'); window.location.href='country_master';</script>";
|
echo "<script>alert('Sorry Not Created ! Try Again '); window.location.href='country_master';</script>";
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
@ -87,21 +86,21 @@ class Dashboard_Controller extends BaseController
|
|||||||
|
|
||||||
$CityMasterDatas =
|
$CityMasterDatas =
|
||||||
array( 'CityName'=>$this->input->post('CityName'),
|
array( 'CityName'=>$this->input->post('CityName'),
|
||||||
'CityDescription'=>$this->input->post('CitiesDescription'));
|
'CityDescription'=>$this->input->post('CitiesDescription'),
|
||||||
|
'IsActive'=>$this->input->post('IsActive') != '' ? 1 : 0);
|
||||||
|
|
||||||
$Added = $this->Dashboard_Model->Add_CityMaster($CityMasterDatas);
|
$Added = $this->Dashboard_Model->Add_CityMaster($CityMasterDatas);
|
||||||
|
|
||||||
|
|
||||||
if( $Added >= 1 ){
|
if( $Added != "" ){
|
||||||
echo "<script>alert('Saved Successfully!');</script>";
|
echo "<script>alert('Created Successfully ! City Code:$Added'); window.location.href='city_master';</script>";
|
||||||
redirect ( 'city_master' );
|
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
echo "<script>alert('Saved Unsuccessfully!');</script>";
|
echo "<script>alert('Sorry Not Created ! Try Again '); window.location.href='city_master';</script>";
|
||||||
redirect ( 'city_master' );
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -120,19 +119,18 @@ class Dashboard_Controller extends BaseController
|
|||||||
|
|
||||||
$VisaTypeMasterDatas =
|
$VisaTypeMasterDatas =
|
||||||
array( 'VisaName'=>$this->input->post('VisaName'),
|
array( 'VisaName'=>$this->input->post('VisaName'),
|
||||||
'VisaDescription'=>$this->input->post('VisaDescription'));
|
'VisaDescription'=>$this->input->post('VisaDescription'),
|
||||||
|
'IsActive'=>$this->input->post('IsActive') != '' ? 1 : 0);
|
||||||
|
|
||||||
$Added = $this->Dashboard_Model->Add_VisaType($VisaTypeMasterDatas);
|
$Added = $this->Dashboard_Model->Add_VisaType($VisaTypeMasterDatas);
|
||||||
|
|
||||||
|
|
||||||
if( $Added >= 1 ){
|
if( $Added != "" ){
|
||||||
echo "<script>alert('Saved Successfully!');</script>";
|
echo "<script>alert('Created Successfully ! Visa NO :$Added'); window.location.href='visa_type_master';</script>";
|
||||||
redirect ( 'visa_type_master' );
|
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
echo "<script>alert('Saved Unsuccessfully!');</script>";
|
echo "<script>alert('Sorry Not Created ! Try Again '); window.location.href='visa_type_master';</script>";
|
||||||
redirect ( 'visa_type_master' );
|
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
@ -155,19 +153,18 @@ class Dashboard_Controller extends BaseController
|
|||||||
$DocumentMasterDatas =
|
$DocumentMasterDatas =
|
||||||
array( 'DocumentName'=>$this->input->post('DocumentName'),
|
array( 'DocumentName'=>$this->input->post('DocumentName'),
|
||||||
'Document'=>$this->uploadFile(),
|
'Document'=>$this->uploadFile(),
|
||||||
'DocumentDescription'=>$this->input->post('Description'));
|
'DocumentDescription'=>$this->input->post('Description'),
|
||||||
|
'IsActive'=>$this->input->post('IsActive') != '' ? 1 : 0);
|
||||||
|
|
||||||
$Added = $this->Dashboard_Model->Add_Document($DocumentMasterDatas);
|
$Added = $this->Dashboard_Model->Add_Document($DocumentMasterDatas);
|
||||||
|
|
||||||
|
|
||||||
if( $Added >= 1 ){
|
if( $Added != "" ){
|
||||||
echo "<script>alert('Saved Successfully!');</script>";
|
echo "<script>alert('Created Successfully ! Document NO :$Added'); window.location.href='document_master';</script>";
|
||||||
|
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
echo "<script>alert('Saved Unsuccessfully!');</script>";
|
echo "<script>alert('Sorry Not Created ! Try Again '); window.location.href='document_master';</script>";
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
@ -91,7 +91,7 @@ class Login_Controller extends CI_Controller
|
|||||||
{
|
{
|
||||||
$this->session->set_flashdata('error', 'Email or password mismatch');
|
$this->session->set_flashdata('error', 'Email or password mismatch');
|
||||||
|
|
||||||
redirect('/login');
|
redirect('/Login_Controller');
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -203,7 +203,7 @@ class Login_Controller extends CI_Controller
|
|||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
redirect('/login');
|
redirect('/Login_Controller');
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -249,7 +249,7 @@ class Login_Controller extends CI_Controller
|
|||||||
|
|
||||||
setFlashData($status, $message);
|
setFlashData($status, $message);
|
||||||
|
|
||||||
redirect("/login");
|
redirect("/Login_Controller");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -33,7 +33,7 @@ class Dashboard_Model extends CI_Model{
|
|||||||
{
|
{
|
||||||
|
|
||||||
$this->db->insert('Tab_CityMaster',$CityMasterDatas);
|
$this->db->insert('Tab_CityMaster',$CityMasterDatas);
|
||||||
$CityMaster = $this->db->affected_rows();
|
$CityMaster = $this->db->insert_id();
|
||||||
|
|
||||||
return $CityMaster;
|
return $CityMaster;
|
||||||
}
|
}
|
||||||
@ -55,7 +55,7 @@ class Dashboard_Model extends CI_Model{
|
|||||||
function Add_VisaType($VisaTypeMasterDatas)
|
function Add_VisaType($VisaTypeMasterDatas)
|
||||||
{
|
{
|
||||||
$this->db->insert('Tab_VisaTypeMaster',$VisaTypeMasterDatas);
|
$this->db->insert('Tab_VisaTypeMaster',$VisaTypeMasterDatas);
|
||||||
$VisaTypeMaster = $this->db->affected_rows();
|
$VisaTypeMaster = $this->db->insert_id();
|
||||||
|
|
||||||
return $VisaTypeMaster;
|
return $VisaTypeMaster;
|
||||||
}
|
}
|
||||||
@ -77,8 +77,7 @@ class Dashboard_Model extends CI_Model{
|
|||||||
function Add_Document($DocumentMasterDatas)
|
function Add_Document($DocumentMasterDatas)
|
||||||
{
|
{
|
||||||
$this->db->insert('Tab_Documents',$DocumentMasterDatas);
|
$this->db->insert('Tab_Documents',$DocumentMasterDatas);
|
||||||
$Documents = $this->db->affected_rows();
|
$Documents = $this->db->insert_id();
|
||||||
|
|
||||||
return $Documents;
|
return $Documents;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@ -226,8 +226,9 @@ span:nth-child(3) .slide-up:active {
|
|||||||
<tr>
|
<tr>
|
||||||
<td><?php echo $gcity->CityCode;?></td>
|
<td><?php echo $gcity->CityCode;?></td>
|
||||||
<td><?php echo $gcity->CityName;?></td>
|
<td><?php echo $gcity->CityName;?></td>
|
||||||
<td><?php echo $gcity->IsActive == 1 ? '<span class="label label-success">Active</span>' : '<span class="label label-danger">Deactive</span>' ?></td>
|
<td style="text-align:center;"><?php echo $gcity->IsActive == 1 ? '<span class="label label-success">Active</span>' : '<span class="label label-danger">Deactive</span>' ?></td>
|
||||||
<td></td>
|
<td style="text-align:center;"><a href="#Editcenter"><i class="fa fa-edit" data-toggle="tooltip" title="" data-original-title="Click here to view/Edit" style="color: #dc2265;"></i></a>
|
||||||
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
<?php }
|
<?php }
|
||||||
}?>
|
}?>
|
||||||
@ -264,8 +265,16 @@ span:nth-child(3) .slide-up:active {
|
|||||||
<textarea class="form-control" rows="3" name="CitiesDescription" placeholder="Enter ..." data-gramm="true" data-txt_gramm_id="d620fc04-2898-2668-7729-ac0c777081d4" data-gramm_id="d620fc04-2898-2668-7729-ac0c777081d4" spellcheck="false" data-gramm_editor="true" style="z-index: auto; position: relative; line-height: 20px; font-size: 14px; transition: none; background: transparent !important;"></textarea>
|
<textarea class="form-control" rows="3" name="CitiesDescription" placeholder="Enter ..." data-gramm="true" data-txt_gramm_id="d620fc04-2898-2668-7729-ac0c777081d4" data-gramm_id="d620fc04-2898-2668-7729-ac0c777081d4" spellcheck="false" data-gramm_editor="true" style="z-index: auto; position: relative; line-height: 20px; font-size: 14px; transition: none; background: transparent !important;"></textarea>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="row" style="padding-top:15px;">
|
<div class="row" style="padding-top:15px;">
|
||||||
<div class="col-md-offset-8 col-md-4">
|
<div class="col-md-2">
|
||||||
|
<div class="form-group">
|
||||||
|
<label>Active/Deactive
|
||||||
|
<input type="checkbox" class="flat-red" name="IsActive" checked>
|
||||||
|
</label>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="col-md-offset-6 col-md-4">
|
||||||
<button type="submit" class="btn btn-primary">Submit</button>
|
<button type="submit" class="btn btn-primary">Submit</button>
|
||||||
<div class="or-button">Or</div>
|
<div class="or-button">Or</div>
|
||||||
<button type="reset" class="btn btn-primary12">Reset</button>
|
<button type="reset" class="btn btn-primary12">Reset</button>
|
||||||
@ -295,6 +304,7 @@ span:nth-child(3) .slide-up:active {
|
|||||||
<!-- /.content -->
|
<!-- /.content -->
|
||||||
</div>
|
</div>
|
||||||
<!-- /.content-wrapper -->
|
<!-- /.content-wrapper -->
|
||||||
|
<!-- jQuery 3 -->
|
||||||
<script src="<?php echo base_url(); ?>assets/bower_components/jquery/dist/jquery.min.js"></script>
|
<script src="<?php echo base_url(); ?>assets/bower_components/jquery/dist/jquery.min.js"></script>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
@ -308,23 +318,11 @@ span:nth-child(3) .slide-up:active {
|
|||||||
'info' : true,
|
'info' : true,
|
||||||
'autoWidth' : false
|
'autoWidth' : false
|
||||||
})
|
})
|
||||||
});
|
|
||||||
|
|
||||||
</script>
|
|
||||||
<script>
|
|
||||||
$(function () {
|
|
||||||
// Replace the <textarea id="editor1"> with a CKEditor
|
|
||||||
// instance, using default configuration.
|
|
||||||
CKEDITOR.replace('editor1')
|
|
||||||
//bootstrap WYSIHTML5 - text editor
|
|
||||||
$('.textarea').wysihtml5()
|
|
||||||
|
|
||||||
|
|
||||||
//Flat red color scheme for iCheck
|
//Flat red color scheme for iCheck
|
||||||
$('input[type="checkbox"].flat-red, input[type="radio"].flat-red').iCheck({
|
$('input[type="checkbox"].flat-red, input[type="radio"].flat-red').iCheck({
|
||||||
checkboxClass: 'icheckbox_flat-green',
|
checkboxClass: 'icheckbox_flat-green',
|
||||||
radioClass : 'iradio_flat-green'
|
radioClass : 'iradio_flat-green'
|
||||||
})
|
})
|
||||||
})
|
});
|
||||||
|
|
||||||
</script>
|
</script>
|
||||||
@ -231,8 +231,9 @@ span:nth-child(3) .slide-up:active {
|
|||||||
<td><?php echo $gc->CountryCode;?></td>
|
<td><?php echo $gc->CountryCode;?></td>
|
||||||
<td><?php echo $gc->CountryName;?></td>
|
<td><?php echo $gc->CountryName;?></td>
|
||||||
<td><?php echo $gc->CapitalCity;?></td>
|
<td><?php echo $gc->CapitalCity;?></td>
|
||||||
<td><?php echo $gc->IsActive == 1 ? '<span class="label label-success">Active</span>' : '<span class="label label-success">Deactive</span>' ?></td>
|
<td style="text-align:center;"><?php echo $gc->IsActive == 1 ? '<span class="label label-success">Active</span>' : '<span class="label label-danger">Deactive</span>' ?></td>
|
||||||
<td></td>
|
<td style="text-align:center;"><a data-toggle="modal" data-target="#editcountry" href="#Editcenter"><i class="fa fa-edit" data-toggle="tooltip" title="" data-original-title="Click here to view/Edit" style="color: #dc2265;"></i></a>
|
||||||
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
<?php }
|
<?php }
|
||||||
}?>
|
}?>
|
||||||
@ -248,6 +249,7 @@ span:nth-child(3) .slide-up:active {
|
|||||||
</tr>
|
</tr>
|
||||||
</tfoot>
|
</tfoot>
|
||||||
</table>
|
</table>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
<!-- /.tab-pane -->
|
<!-- /.tab-pane -->
|
||||||
<div class="tab-pane" id="tab_2">
|
<div class="tab-pane" id="tab_2">
|
||||||
@ -284,7 +286,7 @@ span:nth-child(3) .slide-up:active {
|
|||||||
<div class="col-md-2">
|
<div class="col-md-2">
|
||||||
<div class="form-group">
|
<div class="form-group">
|
||||||
<label>Active/Deactive
|
<label>Active/Deactive
|
||||||
<input type="checkbox" class="flat-red" checked>
|
<input type="checkbox" class="flat-red" name="IsActive" checked>
|
||||||
</label>
|
</label>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@ -710,13 +710,14 @@ span:nth-child(3) .slide-up:active {
|
|||||||
</tbody>
|
</tbody>
|
||||||
<tfoot>
|
<tfoot>
|
||||||
<tr>
|
<tr>
|
||||||
<th>Visa Type</th>
|
<th>Place</th>
|
||||||
<th>Embassy Fee</th>
|
<th>Email</th>
|
||||||
<th>VFS Fee</th>
|
<th>Alternate Email</th>
|
||||||
<th>Processing Time</th>
|
<th>Phone Number</th>
|
||||||
<th>Download Form</th>
|
<th>Fax</th>
|
||||||
<th>Download Checklist</th>
|
<th>Submission Timing</th>
|
||||||
<th>Action</th>
|
<th>Holiday List</th>
|
||||||
|
<th>Action<th>
|
||||||
</tr>
|
</tr>
|
||||||
</tfoot>
|
</tfoot>
|
||||||
</table>
|
</table>
|
||||||
@ -909,12 +910,12 @@ span:nth-child(3) .slide-up:active {
|
|||||||
</tbody>
|
</tbody>
|
||||||
<tfoot>
|
<tfoot>
|
||||||
<tr>
|
<tr>
|
||||||
<th>Visa Type</th>
|
<th>City</th>
|
||||||
<th>Embassy Fee</th>
|
<th>Phone No</th>
|
||||||
<th>VFS Fee</th>
|
<th>Zip Code</th>
|
||||||
<th>Processing Time</th>
|
<th>Email</th>
|
||||||
<th>Download Form</th>
|
<th>Fax</th>
|
||||||
<th>Download Checklist</th>
|
<th>Address</th>
|
||||||
<th>Action</th>
|
<th>Action</th>
|
||||||
</tr>
|
</tr>
|
||||||
</tfoot>
|
</tfoot>
|
||||||
@ -972,5 +973,6 @@ span:nth-child(3) .slide-up:active {
|
|||||||
//Initialize Select2 Elements
|
//Initialize Select2 Elements
|
||||||
$('.select2').select2()
|
$('.select2').select2()
|
||||||
});
|
});
|
||||||
|
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
|||||||
@ -219,8 +219,9 @@ span:nth-child(3) .slide-up:active {
|
|||||||
<tr>
|
<tr>
|
||||||
<td><?php echo $gdoc->DocumentCode;?></td>
|
<td><?php echo $gdoc->DocumentCode;?></td>
|
||||||
<td><?php echo $gdoc->DocumentName;?></td>
|
<td><?php echo $gdoc->DocumentName;?></td>
|
||||||
<td><?php echo $gdoc->IsActive == 1 ? '<span class="label label-success">Active</span>' : '<span class="label label-danger">Deactive</span>' ?></td>
|
<td style="text-align:center;"><?php echo $gdoc->IsActive == 1 ? '<span class="label label-success">Active</span>' : '<span class="label label-danger">Deactive</span>' ?></td>
|
||||||
<td></td>
|
<td style="text-align:center;"><a href="#Editcenter"><i class="fa fa-edit" data-toggle="tooltip" title="" data-original-title="Click here to view/Edit" style="color: #dc2265;"></i></a>
|
||||||
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
<?php }
|
<?php }
|
||||||
}?>
|
}?>
|
||||||
@ -267,7 +268,14 @@ span:nth-child(3) .slide-up:active {
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="row" style="padding-top:15px;">
|
<div class="row" style="padding-top:15px;">
|
||||||
<div class="col-md-offset-8 col-md-4">
|
<div class="col-md-2">
|
||||||
|
<div class="form-group">
|
||||||
|
<label>Active/Deactive
|
||||||
|
<input type="checkbox" class="flat-red" name="IsActive" checked>
|
||||||
|
</label>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="col-md-offset-6 col-md-4">
|
||||||
<button type="submit" class="btn btn-primary">Submit</button>
|
<button type="submit" class="btn btn-primary">Submit</button>
|
||||||
<div class="or-button">Or</div>
|
<div class="or-button">Or</div>
|
||||||
<button type="reset" class="btn btn-primary12">Reset</button>
|
<button type="reset" class="btn btn-primary12">Reset</button>
|
||||||
@ -311,6 +319,11 @@ span:nth-child(3) .slide-up:active {
|
|||||||
'info' : true,
|
'info' : true,
|
||||||
'autoWidth' : false
|
'autoWidth' : false
|
||||||
})
|
})
|
||||||
|
//Flat red color scheme for iCheck
|
||||||
|
$('input[type="checkbox"].flat-red, input[type="radio"].flat-red').iCheck({
|
||||||
|
checkboxClass: 'icheckbox_flat-green',
|
||||||
|
radioClass : 'iradio_flat-green'
|
||||||
|
})
|
||||||
});
|
});
|
||||||
|
|
||||||
</script>
|
</script>
|
||||||
@ -64,7 +64,7 @@
|
|||||||
<!-- Google Font -->
|
<!-- Google Font -->
|
||||||
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,600,700,300italic,400italic,600italic">
|
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,600,700,300italic,400italic,600italic">
|
||||||
</head>
|
</head>
|
||||||
<body class="hold-transition login-page" style="background-image: url(wallpaper2you_237173.jpg);
|
<body class="hold-transition login-page" style="background-image: url(assets/dist/img/loginbg.jpg);
|
||||||
background-size: cover;
|
background-size: cover;
|
||||||
background-position: top center;margin-top:150px;">
|
background-position: top center;margin-top:150px;">
|
||||||
<div class="login-box">
|
<div class="login-box">
|
||||||
|
|||||||
@ -224,8 +224,9 @@ span:nth-child(3) .slide-up:active {
|
|||||||
<tr>
|
<tr>
|
||||||
<td><?php echo $gvisatype->VisaCode;?></td>
|
<td><?php echo $gvisatype->VisaCode;?></td>
|
||||||
<td><?php echo $gvisatype->VisaName;?></td>
|
<td><?php echo $gvisatype->VisaName;?></td>
|
||||||
<td><?php echo $gvisatype->IsActive == 1 ? '<span class="label label-success">Active</span>' : '<span class="label label-danger">Deactive</span>' ?></td>
|
<td style="text-align:center;"><?php echo $gvisatype->IsActive == 1 ? '<span class="label label-success">Active</span>' : '<span class="label label-danger">Deactive</span>' ?></td>
|
||||||
<td></td>
|
<td style="text-align:center;"><a href="#Editcenter"><i class="fa fa-edit" data-toggle="tooltip" title="" data-original-title="Click here to view/Edit" style="color: #dc2265;"></i></a>
|
||||||
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
<?php }
|
<?php }
|
||||||
}?>
|
}?>
|
||||||
@ -262,7 +263,14 @@ span:nth-child(3) .slide-up:active {
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="row" style="padding-top:15px;">
|
<div class="row" style="padding-top:15px;">
|
||||||
<div class="col-md-offset-8 col-md-4">
|
<div class="col-md-2">
|
||||||
|
<div class="form-group">
|
||||||
|
<label>Active/Deactive
|
||||||
|
<input type="checkbox" class="flat-red" name="IsActive" checked>
|
||||||
|
</label>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="col-md-offset-6 col-md-4">
|
||||||
<button type="submit" class="btn btn-primary">Submit</button>
|
<button type="submit" class="btn btn-primary">Submit</button>
|
||||||
<div class="or-button">Or</div>
|
<div class="or-button">Or</div>
|
||||||
<button type="reset" class="btn btn-primary12">Reset</button>
|
<button type="reset" class="btn btn-primary12">Reset</button>
|
||||||
@ -305,6 +313,11 @@ span:nth-child(3) .slide-up:active {
|
|||||||
'info' : true,
|
'info' : true,
|
||||||
'autoWidth' : false
|
'autoWidth' : false
|
||||||
})
|
})
|
||||||
|
//Flat red color scheme for iCheck
|
||||||
|
$('input[type="checkbox"].flat-red, input[type="radio"].flat-red').iCheck({
|
||||||
|
checkboxClass: 'icheckbox_flat-green',
|
||||||
|
radioClass : 'iradio_flat-green'
|
||||||
|
})
|
||||||
});
|
});
|
||||||
|
|
||||||
</script>
|
</script>
|
||||||
BIN
assets/dist/img/Uploads/hero-bg.jpg
vendored
Normal file
BIN
assets/dist/img/Uploads/hero-bg.jpg
vendored
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 37 KiB |
0
assets/dist/img/Uploads/visa_document.pdf
vendored
Normal file → Executable file
0
assets/dist/img/Uploads/visa_document.pdf
vendored
Normal file → Executable file
BIN
assets/dist/img/loginbg.jpg
vendored
Normal file
BIN
assets/dist/img/loginbg.jpg
vendored
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 162 KiB |
Loading…
Reference in New Issue
Block a user