| 
									
										
										
										
											2020-12-14 00:55:10 +08:00
										 |  |  | <div class="container settings"> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	<div class="row"> | 
					
						
							|  |  |  | 		<!-- Nav Start --> | 
					
						
							|  |  |  | 		<?php $this->load->view('options/sidebar') ?>
 | 
					
						
							|  |  |  | 		<!-- Nav End --> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		<!-- Content --> | 
					
						
							|  |  |  | 		<div class="col-md-9"> | 
					
						
							|  |  |  |             <div class="card"> | 
					
						
							|  |  |  |                 <div class="card-header"><h2><?php echo $page_title; ?> - <?php echo $sub_heading; ?></h2></div>
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                 <div class="card-body"> | 
					
						
							|  |  |  |                     <?php if($this->session->flashdata('success')) { ?>
 | 
					
						
							|  |  |  |                         <!-- Display Success Message --> | 
					
						
							|  |  |  |                         <div class="alert alert-success"> | 
					
						
							|  |  |  |                         <?php echo $this->session->flashdata('success'); ?>
 | 
					
						
							|  |  |  |                         </div> | 
					
						
							|  |  |  |                     <?php } ?>
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                     <?php if($this->session->flashdata('message')) { ?>
 | 
					
						
							|  |  |  |                         <!-- Display Message --> | 
					
						
							|  |  |  |                         <div class="alert-message error"> | 
					
						
							|  |  |  |                         <?php echo $this->session->flashdata('message'); ?>
 | 
					
						
							|  |  |  |                         </div> | 
					
						
							|  |  |  |                     <?php } ?>
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                     <?php if(validation_errors()) { ?>
 | 
					
						
							|  |  |  |                     <div class="alert alert-danger"> | 
					
						
							|  |  |  |                         <a class="close" data-dismiss="alert">x</a> | 
					
						
							|  |  |  |                         <?php echo validation_errors(); ?>
 | 
					
						
							|  |  |  |                     </div> | 
					
						
							|  |  |  |                     <?php } ?>
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                     <?php echo form_open('options/appearance_save'); ?>
 | 
					
						
							| 
									
										
										
										
											2021-01-31 21:41:46 +08:00
										 |  |  |                         <div class="form-group"> | 
					
						
							|  |  |  |                             <label for="themeSelect">Language</label> | 
					
						
							|  |  |  |                             <select class="custom-select" id="langSelect" name="language" aria-describedby="langHelp" required> | 
					
						
							|  |  |  |                                 <?php foreach ($language_options as &$lang_opt) { ?>
 | 
					
						
							|  |  |  |                                     <option value='<?php echo $lang_opt; ?>' <?php if($this->optionslib->get_option('language')== $lang_opt) { echo "selected=\"selected\""; } ?>><?php echo ucfirst($lang_opt); ?></option>
 | 
					
						
							|  |  |  |                                 <?php } ?>
 | 
					
						
							|  |  |  |                             </select> | 
					
						
							|  |  |  |                             <small id="langHelp" class="form-text text-muted">Select the default language for Cloudlog.</small> | 
					
						
							|  |  |  |                         </div> | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-12-14 00:55:10 +08:00
										 |  |  |                         <!-- Form options for selecting global theme choice --> | 
					
						
							|  |  |  |                         <div class="form-group"> | 
					
						
							|  |  |  |                             <label for="themeSelect">Theme</label> | 
					
						
							|  |  |  |                             <select class="custom-select" id="themeSelect" name="theme" aria-describedby="themeHelp" required> | 
					
						
							|  |  |  |                                 <option value='default' <?php if($this->optionslib->get_option('theme') == "default") { echo "selected=\"selected\""; } ?>>Default</option>
 | 
					
						
							|  |  |  |                                 <option value='blue' <?php if($this->optionslib->get_option('theme')== "blue") { echo "selected=\"selected\""; } ?>>Blue</option>
 | 
					
						
							|  |  |  |                                 <option value='cosmo' <?php if($this->optionslib->get_option('theme') == "cosmo") { echo "selected=\"selected\""; } ?>>Cosmo</option>
 | 
					
						
							|  |  |  |                                 <option value='cyborg' <?php if($this->optionslib->get_option('theme') == "cyborg") { echo "selected=\"selected\""; } ?>>Cyborg (Dark)</option>
 | 
					
						
							|  |  |  |                                 <option value='darkly' <?php if($this->optionslib->get_option('theme') == "darkly") { echo "selected=\"selected\""; } ?>> Darkly (Dark)</option>
 | 
					
						
							|  |  |  |                                 <option value='superhero' <?php if($this->optionslib->get_option('theme') == "superhero") { echo "selected=\"selected\""; } ?>>Superhero (Dark)</option>
 | 
					
						
							|  |  |  |                                 </select> | 
					
						
							|  |  |  |                             <small id="themeHelp" class="form-text text-muted">Global Theme Choice, this is used when users arent logged in.</small> | 
					
						
							|  |  |  |                         </div> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                         <!-- Save the Form --> | 
					
						
							|  |  |  |                         <input class="btn btn-primary" type="submit" value="Save" /> | 
					
						
							|  |  |  |                     </form> | 
					
						
							|  |  |  |                 </div> | 
					
						
							|  |  |  |             </div> | 
					
						
							|  |  |  | 		</div> | 
					
						
							|  |  |  | 	</div> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | </div> |