From 1481a58e991e9ed54d6cba23e82184eaca48f9fe Mon Sep 17 00:00:00 2001 From: Leandro Lucarella Date: Sat, 30 Apr 2005 23:51:21 +0000 Subject: [PATCH] =?utf8?q?-=20Se=20agrega=20una=20pantalla=20de=20login=20?= =?utf8?q?dummy=20(solo=20chequea=20que=20los=20campos=20no=20sean=20=20?= =?utf8?q?=20vac=C3=ADos=20por=20javascript).=20-=20Se=20agrega=20una=20li?= =?utf8?q?b=20com=C3=BAn=20de=20javascript.=20-=20Se=20agrega=20una=20lib?= =?utf8?q?=20com=C3=BAn=20para=20dibujar=20la=20cabecera=20y=20pi=C3=A9=20?= =?utf8?q?de=20p=C3=A1gina.=20-=20Se=20agregan=20cabeceras=20a=20los=20arc?= =?utf8?q?hivos=20con=20n=C3=BAmero=20de=20grupo,=20integrantes=20y=20auto?= =?utf8?q?r.=20-=20Se=20agrega=20una=20lib=20propia=20de=20m=C3=B3dulo=20d?= =?utf8?q?e=20admin=20con=20los=20formularios=20de=20este=20=20=20m=C3=B3d?= =?utf8?q?ulo.?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit --- src/index.php | 18 ++++++++++++++++++ src/lib.js | 25 +++++++++++++++++++++++++ src/lib/Asesor.php | 9 ++++++++- src/lib/Comentario.php | 9 ++++++++- src/lib/Item.php | 9 ++++++++- src/lib/Link.php | 9 ++++++++- src/lib/Pregunta.php | 9 ++++++++- src/lib/Respuesta.php | 9 ++++++++- src/lib/Socio.php | 9 ++++++++- src/lib/Usuario.php | 9 ++++++++- src/lib/admin.forms.php | 36 ++++++++++++++++++++++++++++++++++++ src/lib/pagina.php | 40 ++++++++++++++++++++++++++++++++++++++++ 12 files changed, 183 insertions(+), 8 deletions(-) create mode 100644 src/index.php create mode 100644 src/lib.js create mode 100644 src/lib/admin.forms.php create mode 100644 src/lib/pagina.php 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 -- 2.43.0