-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSignupPage.java
More file actions
477 lines (420 loc) · 21.5 KB
/
Copy pathSignupPage.java
File metadata and controls
477 lines (420 loc) · 21.5 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
/*
* Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
* Click nbfs://nbhost/SystemFileSystem/Templates/GUIForms/JFrame.java to edit this template
*/
package jframe;
import java.sql.Connection;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
import java.sql.SQLException;
import javax.swing.JOptionPane;
/**
*
* @author Lenovo
*/
public class SignupPage extends javax.swing.JFrame {
/**
* Creates new form SignupPage
*/
public SignupPage() {
initComponents();
}
public void insertSignupDetails()
{
String name = txt_username.getText();
String pwd = txt_password.getText();
String email = txt_email.getText();
String contact = txt_contact.getText();
try
{
Connection con = DBConnection.getconnection();
String sql = "insert into users (name,password,email,contact) values (?,?,?,?)";
PreparedStatement pst = con.prepareStatement(sql);
pst.setString(1,name);
pst.setString(2,pwd);
pst.setString(3,email );
pst.setString(4,contact);
//Returns no of affected rows;
int updatedRowCount = pst.executeUpdate();
if(updatedRowCount>0)
{
JOptionPane.showMessageDialog(this, "Record Inserted Sucessfully");
LoginPage page = new LoginPage();
page.setVisible(true);
this.dispose();
}
else
{
JOptionPane.showMessageDialog(this, "Record Insertion Failed");
}
}
catch(Exception e)
{
e.printStackTrace();
}
}
// Validation of password
public boolean ValidateSignup()
{
String name = txt_username.getText();
String pwd = txt_password.getText();
String email = txt_email.getText();
String contact = txt_contact.getText();
if(name.equals(""))
{
JOptionPane.showMessageDialog(this,"Please Enter Username!");
return false;
}
if(pwd.equals(""))
{
JOptionPane.showMessageDialog(this,"Please Enter Password!");
return false;
}
if(email.equals("") || !email.matches("^.+@.+\\..+$"))
{
JOptionPane.showMessageDialog(this,"Please Enter a Valid Email!");
return false;
}
if(contact.equals(""))
{
JOptionPane.showMessageDialog(this,"Please Enter Contact Details!");
return false;
}
return true;
}
//Check Dubplicate Users
public boolean checkDuplicateUser()
{
String name = txt_username.getText();
boolean isExists = false;
try
{
Connection con = DBConnection.getconnection();
PreparedStatement pst = con.prepareStatement("select * from user where name = ?");
pst.setString(1,name);
ResultSet rs = pst.executeQuery();
if(rs.next())
{
isExists= true;
}
else
{
isExists = false;
}
}
catch(Exception e)
{
e.printStackTrace();
}
return isExists;
}
/**
* This method is called from within the constructor to initialize the form.
* WARNING: Do NOT modify this code. The content of this method is always
* regenerated by the Form Editor.
*/
@SuppressWarnings("unchecked")
// <editor-fold defaultstate="collapsed" desc="Generated Code">//GEN-BEGIN:initComponents
private void initComponents() {
jPanel1 = new javax.swing.JPanel();
jPanel3 = new javax.swing.JPanel();
jPanel4 = new javax.swing.JPanel();
evaluatorLine2D1 = new org.jdesktop.swing.animation.timing.evaluators.EvaluatorLine2D();
jPanel2 = new javax.swing.JPanel();
jLabel1 = new javax.swing.JLabel();
jLabel2 = new javax.swing.JLabel();
jLabel4 = new javax.swing.JLabel();
jLabel5 = new javax.swing.JLabel();
jPanel5 = new javax.swing.JPanel();
jLabel6 = new javax.swing.JLabel();
jLabel8 = new javax.swing.JLabel();
txt_username = new app.bolivia.swing.JCTextField();
jLabel9 = new javax.swing.JLabel();
jLabel11 = new javax.swing.JLabel();
jLabel12 = new javax.swing.JLabel();
txt_password = new app.bolivia.swing.JCTextField();
jLabel10 = new javax.swing.JLabel();
jLabel13 = new javax.swing.JLabel();
txt_email = new app.bolivia.swing.JCTextField();
jLabel14 = new javax.swing.JLabel();
jLabel15 = new javax.swing.JLabel();
txt_contact = new app.bolivia.swing.JCTextField();
jLabel16 = new javax.swing.JLabel();
jLabel17 = new javax.swing.JLabel();
rSMaterialButtonCircle1 = new necesario.RSMaterialButtonCircle();
rSMaterialButtonCircle2 = new necesario.RSMaterialButtonCircle();
jLabel18 = new javax.swing.JLabel();
javax.swing.GroupLayout jPanel1Layout = new javax.swing.GroupLayout(jPanel1);
jPanel1.setLayout(jPanel1Layout);
jPanel1Layout.setHorizontalGroup(
jPanel1Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addGap(0, 100, Short.MAX_VALUE)
);
jPanel1Layout.setVerticalGroup(
jPanel1Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addGap(0, 100, Short.MAX_VALUE)
);
javax.swing.GroupLayout jPanel3Layout = new javax.swing.GroupLayout(jPanel3);
jPanel3.setLayout(jPanel3Layout);
jPanel3Layout.setHorizontalGroup(
jPanel3Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addGap(0, 100, Short.MAX_VALUE)
);
jPanel3Layout.setVerticalGroup(
jPanel3Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addGap(0, 100, Short.MAX_VALUE)
);
javax.swing.GroupLayout jPanel4Layout = new javax.swing.GroupLayout(jPanel4);
jPanel4.setLayout(jPanel4Layout);
jPanel4Layout.setHorizontalGroup(
jPanel4Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addGap(0, 100, Short.MAX_VALUE)
);
jPanel4Layout.setVerticalGroup(
jPanel4Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addGap(0, 100, Short.MAX_VALUE)
);
setDefaultCloseOperation(javax.swing.WindowConstants.EXIT_ON_CLOSE);
setUndecorated(true);
getContentPane().setLayout(new org.netbeans.lib.awtextra.AbsoluteLayout());
jPanel2.setBackground(new java.awt.Color(255, 255, 255));
jPanel2.setLayout(new org.netbeans.lib.awtextra.AbsoluteLayout());
jLabel1.setFont(new java.awt.Font("Verdana", 0, 25)); // NOI18N
jLabel1.setForeground(new java.awt.Color(51, 51, 51));
jLabel1.setText("PICT Library ");
jPanel2.add(jLabel1, new org.netbeans.lib.awtextra.AbsoluteConstraints(470, 110, -1, 30));
jLabel2.setFont(new java.awt.Font("Verdana", 1, 12)); // NOI18N
jLabel2.setForeground(new java.awt.Color(255, 51, 51));
jLabel2.setText("Java PBL");
jPanel2.add(jLabel2, new org.netbeans.lib.awtextra.AbsoluteConstraints(20, 20, -1, -1));
jLabel4.setIcon(new javax.swing.ImageIcon("C:/Users/Lenovo/Desktop/Library_Management_System/icons/icons/signup-library-icon.png"));
jPanel2.add(jLabel4, new org.netbeans.lib.awtextra.AbsoluteConstraints(70, 140, 800, 590));
jLabel5.setFont(new java.awt.Font("Verdana", 0, 25)); // NOI18N
jLabel5.setForeground(new java.awt.Color(255, 102, 102));
jLabel5.setText("Welcome to ");
jPanel2.add(jLabel5, new org.netbeans.lib.awtextra.AbsoluteConstraints(310, 110, 160, 30));
getContentPane().add(jPanel2, new org.netbeans.lib.awtextra.AbsoluteConstraints(0, 0, 990, 830));
jPanel5.setBackground(new java.awt.Color(102, 102, 255));
jPanel5.setBorder(javax.swing.BorderFactory.createMatteBorder(0, 0, 2, 0, new java.awt.Color(51, 51, 51)));
jPanel5.setLayout(new org.netbeans.lib.awtextra.AbsoluteLayout());
jLabel6.setBackground(new java.awt.Color(0, 0, 0));
jLabel6.setFont(new java.awt.Font("Verdana", 0, 18)); // NOI18N
jLabel6.setForeground(new java.awt.Color(255, 204, 204));
jLabel6.setText("Create New Account Here ");
jPanel5.add(jLabel6, new org.netbeans.lib.awtextra.AbsoluteConstraints(140, 90, 260, 30));
jLabel8.setFont(new java.awt.Font("Verdana", 0, 25)); // NOI18N
jLabel8.setForeground(new java.awt.Color(255, 255, 255));
jLabel8.setIcon(new javax.swing.ImageIcon("C:/Users/Lenovo/Desktop/Library_Management_System/icons/icons/icons8_Account_50px.png"));
jPanel5.add(jLabel8, new org.netbeans.lib.awtextra.AbsoluteConstraints(70, 180, 60, 70));
txt_username.setBackground(new java.awt.Color(102, 102, 255));
txt_username.setBorder(javax.swing.BorderFactory.createMatteBorder(0, 0, 2, 0, new java.awt.Color(0, 0, 0)));
txt_username.setFont(new java.awt.Font("Myanmar Text", 2, 18)); // NOI18N
txt_username.setPlaceholder("Enter Username ");
txt_username.addFocusListener(new java.awt.event.FocusAdapter() {
public void focusLost(java.awt.event.FocusEvent evt) {
txt_usernameFocusLost(evt);
}
});
txt_username.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evt) {
txt_usernameActionPerformed(evt);
}
});
jPanel5.add(txt_username, new org.netbeans.lib.awtextra.AbsoluteConstraints(140, 210, 310, 40));
jLabel9.setFont(new java.awt.Font("Verdana", 0, 25)); // NOI18N
jLabel9.setForeground(new java.awt.Color(255, 255, 255));
jLabel9.setText("Username : ");
jPanel5.add(jLabel9, new org.netbeans.lib.awtextra.AbsoluteConstraints(140, 170, 160, 30));
jLabel11.setFont(new java.awt.Font("Verdana", 0, 25)); // NOI18N
jLabel11.setForeground(new java.awt.Color(255, 255, 255));
jLabel11.setText("Username : ");
jPanel5.add(jLabel11, new org.netbeans.lib.awtextra.AbsoluteConstraints(150, 220, 160, 30));
jLabel12.setFont(new java.awt.Font("Verdana", 0, 25)); // NOI18N
jLabel12.setForeground(new java.awt.Color(255, 255, 255));
jLabel12.setText("X");
jLabel12.addMouseListener(new java.awt.event.MouseAdapter() {
public void mouseClicked(java.awt.event.MouseEvent evt) {
jLabel12MouseClicked(evt);
}
});
jPanel5.add(jLabel12, new org.netbeans.lib.awtextra.AbsoluteConstraints(520, 20, 20, 20));
txt_password.setBackground(new java.awt.Color(102, 102, 255));
txt_password.setBorder(javax.swing.BorderFactory.createMatteBorder(0, 0, 2, 0, new java.awt.Color(0, 0, 0)));
txt_password.setFont(new java.awt.Font("Myanmar Text", 2, 18)); // NOI18N
txt_password.setPlaceholder("Enter Password");
txt_password.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evt) {
txt_passwordActionPerformed(evt);
}
});
jPanel5.add(txt_password, new org.netbeans.lib.awtextra.AbsoluteConstraints(140, 330, 310, 40));
jLabel10.setFont(new java.awt.Font("Verdana", 0, 25)); // NOI18N
jLabel10.setForeground(new java.awt.Color(255, 255, 255));
jLabel10.setIcon(new javax.swing.ImageIcon("C:/Users/Lenovo/Desktop/Library_Management_System/icons/icons/icons8_Secure_50px.png"));
jPanel5.add(jLabel10, new org.netbeans.lib.awtextra.AbsoluteConstraints(70, 300, 60, 70));
jLabel13.setFont(new java.awt.Font("Verdana", 0, 25)); // NOI18N
jLabel13.setForeground(new java.awt.Color(255, 255, 255));
jLabel13.setText("Password : ");
jPanel5.add(jLabel13, new org.netbeans.lib.awtextra.AbsoluteConstraints(140, 290, 160, 30));
txt_email.setBackground(new java.awt.Color(102, 102, 255));
txt_email.setBorder(javax.swing.BorderFactory.createMatteBorder(0, 0, 2, 0, new java.awt.Color(0, 0, 0)));
txt_email.setFont(new java.awt.Font("Myanmar Text", 2, 18)); // NOI18N
txt_email.setPlaceholder("Enter Email ");
txt_email.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evt) {
txt_emailActionPerformed(evt);
}
});
jPanel5.add(txt_email, new org.netbeans.lib.awtextra.AbsoluteConstraints(140, 450, 310, 40));
jLabel14.setFont(new java.awt.Font("Verdana", 0, 25)); // NOI18N
jLabel14.setForeground(new java.awt.Color(255, 255, 255));
jLabel14.setIcon(new javax.swing.ImageIcon("C:/Users/Lenovo/Desktop/Library_Management_System/icons/icons/icons8_Secured_Letter_50px.png"));
jPanel5.add(jLabel14, new org.netbeans.lib.awtextra.AbsoluteConstraints(70, 420, 60, 70));
jLabel15.setFont(new java.awt.Font("Verdana", 0, 25)); // NOI18N
jLabel15.setForeground(new java.awt.Color(255, 255, 255));
jLabel15.setText("Email :");
jPanel5.add(jLabel15, new org.netbeans.lib.awtextra.AbsoluteConstraints(140, 410, 160, 30));
txt_contact.setBackground(new java.awt.Color(102, 102, 255));
txt_contact.setBorder(javax.swing.BorderFactory.createMatteBorder(0, 0, 2, 0, new java.awt.Color(0, 0, 0)));
txt_contact.setFont(new java.awt.Font("Myanmar Text", 2, 18)); // NOI18N
txt_contact.setPlaceholder("Enter Contact");
txt_contact.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evt) {
txt_contactActionPerformed(evt);
}
});
jPanel5.add(txt_contact, new org.netbeans.lib.awtextra.AbsoluteConstraints(140, 570, 310, 40));
jLabel16.setFont(new java.awt.Font("Verdana", 0, 25)); // NOI18N
jLabel16.setForeground(new java.awt.Color(255, 255, 255));
jLabel16.setIcon(new javax.swing.ImageIcon("C:/Users/Lenovo/Desktop/Library_Management_System/icons/icons/icons8_Google_Mobile_50px.png"));
jPanel5.add(jLabel16, new org.netbeans.lib.awtextra.AbsoluteConstraints(70, 540, 60, 70));
jLabel17.setFont(new java.awt.Font("Verdana", 0, 25)); // NOI18N
jLabel17.setForeground(new java.awt.Color(255, 255, 255));
jLabel17.setText("Contact :");
jPanel5.add(jLabel17, new org.netbeans.lib.awtextra.AbsoluteConstraints(140, 530, 160, 30));
rSMaterialButtonCircle1.setBackground(new java.awt.Color(0, 51, 51));
rSMaterialButtonCircle1.setText("Login");
rSMaterialButtonCircle1.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evt) {
rSMaterialButtonCircle1ActionPerformed(evt);
}
});
jPanel5.add(rSMaterialButtonCircle1, new org.netbeans.lib.awtextra.AbsoluteConstraints(290, 670, 200, 80));
rSMaterialButtonCircle2.setBackground(new java.awt.Color(255, 51, 51));
rSMaterialButtonCircle2.setText("Signup");
rSMaterialButtonCircle2.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evt) {
rSMaterialButtonCircle2ActionPerformed(evt);
}
});
jPanel5.add(rSMaterialButtonCircle2, new org.netbeans.lib.awtextra.AbsoluteConstraints(60, 670, 200, 80));
jLabel18.setFont(new java.awt.Font("Verdana", 0, 25)); // NOI18N
jLabel18.setForeground(new java.awt.Color(255, 255, 255));
jLabel18.setText("Signup Page");
jPanel5.add(jLabel18, new org.netbeans.lib.awtextra.AbsoluteConstraints(180, 60, 160, 30));
getContentPane().add(jPanel5, new org.netbeans.lib.awtextra.AbsoluteConstraints(990, 0, 560, 820));
setSize(new java.awt.Dimension(1600, 850));
setLocationRelativeTo(null);
}// </editor-fold>//GEN-END:initComponents
private void txt_usernameActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_txt_usernameActionPerformed
// TODO add your handling code here:
}//GEN-LAST:event_txt_usernameActionPerformed
private void txt_passwordActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_txt_passwordActionPerformed
// TODO add your handling code here:
}//GEN-LAST:event_txt_passwordActionPerformed
private void txt_emailActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_txt_emailActionPerformed
// TODO add your handling code here:
}//GEN-LAST:event_txt_emailActionPerformed
private void txt_contactActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_txt_contactActionPerformed
// TODO add your handling code here:
}//GEN-LAST:event_txt_contactActionPerformed
private void rSMaterialButtonCircle1ActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_rSMaterialButtonCircle1ActionPerformed
// TODO add your handling code here:
}//GEN-LAST:event_rSMaterialButtonCircle1ActionPerformed
private void rSMaterialButtonCircle2ActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_rSMaterialButtonCircle2ActionPerformed
if(ValidateSignup()==true)
{
if( checkDuplicateUser()==false)
{
insertSignupDetails();
}
else
{
JOptionPane.showMessageDialog(this,"User Already Exists!");
}
}
}//GEN-LAST:event_rSMaterialButtonCircle2ActionPerformed
private void jLabel12MouseClicked(java.awt.event.MouseEvent evt) {//GEN-FIRST:event_jLabel12MouseClicked
System.exit(0); // TODO add your handling code here:
}//GEN-LAST:event_jLabel12MouseClicked
private void txt_usernameFocusLost(java.awt.event.FocusEvent evt) {//GEN-FIRST:event_txt_usernameFocusLost
// TODO add your handling code here:
if(checkDuplicateUser()==true)
{
JOptionPane.showMessageDialog(this,"Username Already Exists");
}
}//GEN-LAST:event_txt_usernameFocusLost
/**
* @param args the command line arguments
*/
public static void main(String args[]) {
/* Set the Nimbus look and feel */
//<editor-fold defaultstate="collapsed" desc=" Look and feel setting code (optional) ">
/* If Nimbus (introduced in Java SE 6) is not available, stay with the default look and feel.
* For details see http://download.oracle.com/javase/tutorial/uiswing/lookandfeel/plaf.html
*/
try {
for (javax.swing.UIManager.LookAndFeelInfo info : javax.swing.UIManager.getInstalledLookAndFeels()) {
if ("Nimbus".equals(info.getName())) {
javax.swing.UIManager.setLookAndFeel(info.getClassName());
break;
}
}
} catch (ClassNotFoundException ex) {
java.util.logging.Logger.getLogger(SignupPage.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
} catch (InstantiationException ex) {
java.util.logging.Logger.getLogger(SignupPage.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
} catch (IllegalAccessException ex) {
java.util.logging.Logger.getLogger(SignupPage.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
} catch (javax.swing.UnsupportedLookAndFeelException ex) {
java.util.logging.Logger.getLogger(SignupPage.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
}
//</editor-fold>
/* Create and display the form */
java.awt.EventQueue.invokeLater(new Runnable() {
public void run() {
new SignupPage().setVisible(true);
}
});
}
// Variables declaration - do not modify//GEN-BEGIN:variables
private org.jdesktop.swing.animation.timing.evaluators.EvaluatorLine2D evaluatorLine2D1;
private javax.swing.JLabel jLabel1;
private javax.swing.JLabel jLabel10;
private javax.swing.JLabel jLabel11;
private javax.swing.JLabel jLabel12;
private javax.swing.JLabel jLabel13;
private javax.swing.JLabel jLabel14;
private javax.swing.JLabel jLabel15;
private javax.swing.JLabel jLabel16;
private javax.swing.JLabel jLabel17;
private javax.swing.JLabel jLabel18;
private javax.swing.JLabel jLabel2;
private javax.swing.JLabel jLabel4;
private javax.swing.JLabel jLabel5;
private javax.swing.JLabel jLabel6;
private javax.swing.JLabel jLabel8;
private javax.swing.JLabel jLabel9;
private javax.swing.JPanel jPanel1;
private javax.swing.JPanel jPanel2;
private javax.swing.JPanel jPanel3;
private javax.swing.JPanel jPanel4;
private javax.swing.JPanel jPanel5;
private necesario.RSMaterialButtonCircle rSMaterialButtonCircle1;
private necesario.RSMaterialButtonCircle rSMaterialButtonCircle2;
private app.bolivia.swing.JCTextField txt_contact;
private app.bolivia.swing.JCTextField txt_email;
private app.bolivia.swing.JCTextField txt_password;
private app.bolivia.swing.JCTextField txt_username;
// End of variables declaration//GEN-END:variables
}