Skip to content

Commit

Permalink
No commit message
Browse files Browse the repository at this point in the history
  • Loading branch information
Ricardious authored and Ricardious committed Mar 9, 2024
1 parent e903259 commit f7e8c43
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/views/LOGIN.java
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ public LOGIN(){
this.add(usernameLabel);

// CAMPO DE TEXTO PARA EL USER
usernameField = new JTextField("202300476");
usernameField = new JTextField("");
// TAMAÑO DEL CAMPO DE TEXTO
int fieldWidth = 260;
int fieldHeight = 25;
Expand All @@ -112,7 +112,7 @@ public LOGIN(){


// CAMPO DE CONTRASEÑA
passwordField = new JPasswordField("proyecto1IPC1");
passwordField = new JPasswordField("");
passwordField.setEchoChar('\u25CF');// Establecer el carácter de eco para ocultar la contraseña
// DIMENSIONES - POSX, POSY, TAMX, TAMY
passwordField.setBounds(xField, yPasswordField, fieldWidth, fieldHeight);
Expand Down

0 comments on commit f7e8c43

Please sign in to comment.