-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnovedades.php
34 lines (31 loc) · 1.22 KB
/
novedades.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
<?php
/**
* @author Victoria Marino
* @package Index
* @version 1.2
*/
/*Con include_once llamamos a la p‡gina de referencia y la mostramos*/
include_once(dirname(__FILE__) . "/includes/common.php");
include_once($APP_PATH . "/includes/valid_session.php");
include_once($APP_PATH . "/includes/header.php");
if($_SESSION["nivel"]==1 || $_SESSION["nivel"]==2 || $_SESSION["nivel"]==3){
?>
<form action="novedades.php" method="post" enctype="multipart/form-data">
<fieldset>
<legend>Nueva Novedad</legend>
<label for="titulo">Título: </label><input type="text" name="titulo" /><br>
<label for="texto">Descripción: </label>
<textarea rows="4" cols="25" name="texto">
</textarea><br>
<label for="fecha_desde">Fecha Desde: </label><input type="text" name="fecha_desde" id="mascarafecha"/><br/>
<label for="fecha_hasta">Fecha Hasta: </label><input type="text" name="fecha_hasta" id="mascarafecha2"/><br/>
<input type="submit" value="Ingresar" class="boton">
</fieldset>
<input type="hidden" name="cmd" value="novedad"/>
</form>
<?php
} else {
echo "No tiene autorización para enviar Novedades";
}
include_once($APP_PATH . "/includes/footer.php");
?>