We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f99f848 commit 9f255edCopy full SHA for 9f255ed
src/collegeapplication/login/LoginPanel.java
@@ -168,6 +168,8 @@ else if(loginprofile.equals("Faculty"))
168
Faculty f=new FacultyData().getFacultyInfobyUserId(useridfield.getText());
169
if(!f.getCourceCode().equals("Not Assigned"))
170
{
171
+
172
+ new UserData().addFacultyLoginTime(f);
173
FacultyMain fm=new FacultyMain(f);
174
fm.setVisible(true);
175
fm.setLocationRelativeTo(null);
@@ -188,6 +190,7 @@ else if(loginprofile.equals("Student"))
188
190
if(result==true)
189
191
192
Student s=new StudentData().getStudentDetailsByUserId(useridfield.getText());
193
+ new UserData().addStudentLoginTime(s);
194
StudentMain sm=new StudentMain(s);
195
sm.setVisible(true);
196
sm.setLocationRelativeTo(null);
0 commit comments