20 lines
462 B
PHP
20 lines
462 B
PHP
|
|
<?php
|
||
|
|
include("seguridad.php");
|
||
|
|
include("functions.php");
|
||
|
|
|
||
|
|
if(!$usuario->tieneRol("2")){
|
||
|
|
header("Location: aplicacion.php?e=permiso");
|
||
|
|
exit;
|
||
|
|
}
|
||
|
|
include_once("html/cabecera.php");
|
||
|
|
?>
|
||
|
|
|
||
|
|
<h2><?php echo $locale['1810']; ?></h2>
|
||
|
|
<h4><?php echo $locale['1809']; ?></h4>
|
||
|
|
<form action="backup_bd.php" method="post">
|
||
|
|
<input type="submit" class="button" value="<?php echo $locale["gu"]; ?>">
|
||
|
|
</form>
|
||
|
|
<?php
|
||
|
|
include_once("html/pie.php");
|
||
|
|
?>
|