From: Leandro Lucarella Date: Sat, 30 Apr 2005 23:51:21 +0000 (+0000) Subject: - Se agrega una pantalla de login dummy (solo chequea que los campos no sean X-Git-Tag: svn_import~150 X-Git-Url: https://git.llucax.com/z.facultad/75.43/tp1.git/commitdiff_plain/1481a58e991e9ed54d6cba23e82184eaca48f9fe?ds=inline - Se agrega una pantalla de login dummy (solo chequea que los campos no sean vacíos por javascript). - Se agrega una lib común de javascript. - Se agrega una lib común para dibujar la cabecera y pié de página. - Se agregan cabeceras a los archivos con número de grupo, integrantes y autor. - Se agrega una lib propia de módulo de admin con los formularios de este módulo. --- diff --git a/src/index.php b/src/index.php new file mode 100644 index 0000000..f030497 --- /dev/null +++ b/src/index.php @@ -0,0 +1,18 @@ + \ No newline at end of file diff --git a/src/lib.js b/src/lib.js new file mode 100644 index 0000000..6879d47 --- /dev/null +++ b/src/lib.js @@ -0,0 +1,25 @@ +// vim: set binary noeol et sw=4 sts=4 : +// Grupo 10 +// +// Lucarella, Schein, Arena +// +// Creado: Leandro Lucarella (sáb abr 30 20:21:30 ART 2005) +// +// $Id$ + +function vacio(f) +{ + if (!f.value.replace(/\s/g, '').length) return true; + return false; +} + +function check_vacio(f, n) +{ + if (vacio(f)) + { + alert('Falta ingresar el campo ' + n + '!'); + f.focus(); + return false; + } + return true; +} \ No newline at end of file diff --git a/src/lib/Asesor.php b/src/lib/Asesor.php index 26fe515..cc3b23f 100644 --- a/src/lib/Asesor.php +++ b/src/lib/Asesor.php @@ -1,5 +1,12 @@ +
+ +

+ Por favor identifíquese para ingresar en el sistema:
+ Usuario:
+ Contraseña:
+ +

+
+ \ No newline at end of file diff --git a/src/lib/pagina.php b/src/lib/pagina.php new file mode 100644 index 0000000..946ca87 --- /dev/null +++ b/src/lib/pagina.php @@ -0,0 +1,40 @@ + + + + + + Grupos<?php echo $titulo ? " - $titulo" : '' ?> + + + +

Grupos

+ $titulo\n" ?> + +
+ Copyleft 2005 - Grupo 10 (autor + ) +
+ + + \ No newline at end of file