| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- <?php
- $server = get_protocol() . $_SERVER['HTTP_HOST'];
- $default_host = substr($http_host, 0, strpos($http_host, ':'));
- include("../functions.php");
- $con = startdb();
- if (!checkSession($con)){
- header("Location: /index.php");
- exit (-1);
- }
- else{
- ?>
- <html>
- <head>
- <meta content="text/html; charset=windows-1252" http-equiv="content-type"/>
- <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, minimum-scale=1">
- <title>Ajustes - Gasteizko Margolariak - Administracion</title>
- <!-- CSS files -->
- <link rel="stylesheet" type="text/css" href="/css/ui.css"/>
- <link rel="stylesheet" type="text/css" href="/css/settings.css"/>
- <!-- CSS for mobile version -->
- <link rel="stylesheet" type="text/css" media="(max-width : 990px)" href="/css/m/ui.css"/>
- <link rel="stylesheet" type="text/css" media="(max-width : 990px)" href="/css/m/settings.css"/>
- <!-- Script files -->
- <script type="text/javascript" src="/script/ui.js"></script>
- <script type="text/javascript">
- function saveSetting(name, value){
- // TODO: Call guardar.php
- }
- </script>
- </head>
- <body>
- <?php include('../toolbar.php'); ?>
- <div id='content'>
- <div class='section'>
- <h3 class='section_title'>Ajustes</h3>
- <div class='entry'>
- Permitir que los visitantes comenten anonimamente...
- <br/>
- <label><input type="checkbox" name="comment_blog" value="value">... en el blog</label>
- <br/>
- <label><input type="checkbox" name="comment_activities" value="value">... en las actividades</label>
- <br/>
- <label><input type="checkbox" name="comment_gallery" value="value">... en la galería</label>
- <br/><br/>
- <label>
- <input type="checkbox" name="upload_gallery" value="value">
- Permitir que los usuarios contribuyan a los albums con sus fotos (puede restringirse por album)
- </label>
- <label>
- <input type="checkbox" name="festivals" value="value">
- Usar disseño para fiestas de Vitoria.
- </label>
- </div>
- </div>
- </div>
- </body>
- </html>
- <?php } ?>
|