Skip to content

Commit 55d4f73

Browse files
committed
20240610_001
1 parent a348dae commit 55d4f73

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

Entregas/Entrega2/index.js

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ let opcion=true;
9292
const u = new User();//INSTANCIO CLASE
9393

9494
while(opcion){
95-
let opt=parseInt(prompt ("INGRESE OPCION:\n 0. REGISTRO USUARIO\n 1.LOGIN\n 2.SALIR\n\n"));
95+
let opt=parseInt(prompt ("INGRESE OPCION:\n 0. REGISTRO USUARIO\n 1. LOGIN\n 2. SALIR\n\n"));
9696
switch (opt) {
9797
case 0:
9898
u.ingresoDatos();//Pide registro de datos usuario
@@ -108,4 +108,5 @@ let opt=parseInt(prompt ("INGRESE OPCION:\n 0. REGISTRO USUARIO\n 1.LOGIN\n
108108
break;
109109
}
110110
}
111-
alert("USTED ESTA SALIENDO DEL LOGIN");
111+
const hoy = new Date();
112+
alert("HOY "+hoy.toLocaleDateString()+" USTED ESTA SALIENDO DEL SISTEMA");// "14/6/2020"

Entregas/PruebasEntrega/estilos.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
html{
22
font-family: Tahoma;
33
}
4-
4+
55
body {
66
font-family: sans-serif;
77
font-weight: normal;

0 commit comments

Comments
 (0)