<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" >
<title> REGISTRO DE ALUMNO</title>
<LINK REL="stylesheet" type="text/css" href="StyleSheet.css" media="all" <div align="center">
<body style="color:#000000;background-color:#white;" >
<?php
include('config.php');
if ($_SESSION['nivel'] == 1){
echo "Estas logeado";
?>
<script type="text/javascript" LANGUAGE="JAVASCRIPT">
function verifica(){
//validar el nombre del alumno
if (document.funcion.nombre.value==0)
{
alert("Debes Ingresar nombre del Alumno")
document.funcion.nombre.focus()
return 0;
}
//validar sexo del alumno
var sexz=0;
for(i=0; sex=document.funcion.elements[i]; i++){
if (sex.type=='radio')
if (sex.checked){sexz=1;break;}}
if (sexz==1){document.funcion.submit();}else{
alert('Debe seleccionar algun sexo');return;}
//validar Direccion
if (document.funcion.direccion.value==0)
{
alert("Debes Ingresar La Direccion Del Alumno")
document.funcion.direccion.focus()
return 0;
}
//validar cedula
if (document.funcion.cedula.value==0)
{
alert("Debes Ingresar La Cedula Del Alumno")
document.funcion.cedula.focus()
return 0;
}
//validar telefono
if (document.funcion.telefono.value==0)
{
alert("Debe Ingresar el Telefono del Alumno.")
document.funcion.telefono.focus()
return 0;
}
//validar nombre del representante
if (document.funcion.nomrep.value==0)
{
alert("Debe Ingresar el Nombre del Representante.")
document.funcion.nomrep.focus()
return 0;
}
//validar numero del representante
if (document.funcion.numrep.value==0)
{
alert("Debe Ingresar el Numero de telefono del Representante.")
document.funcion.numrep.focus()
return 0;
}
//el formulario se envia
alert("Alumno Registrado Correctamente");
document.funcion.submit();
document.funcion.opt.value=1;
}
</script>
</head>
<body>
<body>
<center> <h1>REGISTRO DE ALUMNO</h1></center>
<form id="nombre" method="POST" name="funcion" ACTION="procesar_alumno_formulario.php"
onSubmit="return verifica();">
<center><H3>DATOS PERSONALES</H3></center>
<H4>NOMBRE COMPLETO</H4>
<input type="text" name="nombre" value=" " size="20"><br>
<H4>INDIQUE SEXO:</H4>
<input type="radio" name="sexo" value="Masculino"> Masculino<br>
<input type="radio" name="sexo" value="Femenino"> Femenino<br>
<div id="acoplar"><H4>DIRECCION:</H4>
<input type="text" name="direccion" value=" " size="20"><br>
<H4>CEDULA:</H4>
<input type="text" name="cedula" value=" " size="20"><br>
<H4>NUMERO DE TELEFONO:</H4>
<input type="text" name="telefono" value=" " size="20"><br>
</div>
<div id="acoplar2"><h4>NOMBRE DEL REPRESENTANTE</h4>
<input type ="text" name="nomrep" value=" " size="20"><br>
<h4>TELEFONO REPRESENTANTE</h4>
<input type ="text" name="numrep" value=" " size="20"><br>
</div>
<h4>SELECCIONE AÑO CURSANTE </h4>
<div id="año">
<select name="ano">
<option value="7mo">7mo</option>
<option value="8vo">8vo</option>
<option value="9no">9no</option>
<option value="4to">4to</option>
<option value="5to">5to</option></select></div>
<h4>SECCION CURSANTE </h4>
<div id="seccion">
<select name="seccion">
<option value="A">"A"</option>
<option value="B">"B"</option>
<option value="C">"C"</option>
</select></div>
<FONT COLOR="#FF0000"> *CAMPO OBLIGATORIO </FONT><br></div>
</form>
<div id="botones">
<tr>
<td colspan="2">
<input type="button" value="Enviar Datos" name="b3" onclick="verifica()">
<input type="reset" name="borrar" value ="Borrar">
</td>
</tr> </div>
</head>
<body>
<?php
?>
<div id="atras">
<a href="principal.php">Pagina Principal</a>
<a href="salir.php">Desconectar</a></div>
</body>
</html>
<?php }elseif ($_SESSION['nivel'] == 2){
echo 'tengo el nivel 2 que debo hacer ??';
}else{
echo "Acceso no autorizado";
}
?>