28 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			PHP
		
	
			
		
		
	
	
			28 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			PHP
		
	
| 
 | |
|                 <!-- widget "config file" -->
 | |
|                 <div class="card text-center w-75 mx-lef">
 | |
|                     <p class="h4 card-header">Jilo configuration file :: edit</p>
 | |
|                     <div class="card-body">
 | |
|                         <div class="card-text">
 | |
|                             <p class="text-danger"><strong>this may break everything, use with extreme caution</strong></p>
 | |
|                         </div>
 | |
|                         <form method="POST" action="<?= htmlspecialchars($app_root) ?>?page=config&item=config_file">
 | |
| 
 | |
| <?php
 | |
| include '../app/helpers/render.php';
 | |
| editConfig($config, '0');
 | |
| echo "\n";
 | |
| ?>
 | |
| 
 | |
|                             <p class="text-danger"><strong>this may break everything, use with extreme caution</strong></p>
 | |
|                             <br />
 | |
|                             <input type="hidden" name="item" value="config_file" />
 | |
|                             <a class="btn btn-outline-secondary btn-sm" href="<?= htmlspecialchars($app_root) ?>?page=config&item=config_file" />Cancel</a>
 | |
|                               
 | |
|                             <input type="submit" class="btn btn-danger btn-sm" value="Save" />
 | |
|                         </form>
 | |
| 
 | |
|                     </div>
 | |
|                 </div>
 | |
|                 <!-- /widget "config file" -->
 |