-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstart.java
32 lines (23 loc) · 810 Bytes
/
start.java
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
public class start {
public static void main(String[] args) {
// Start the application by initializing the Login page
new LogInPage();
// Uncomment below lines to start other pages or dashboards as needed:
// For Forget Password page
// new ForgetPass();
// For Signup page
// new Signup();
// For Admin Login page
// new AdminLogin();
// For Profile page with username "Test"
// new Profile("Test");
// For Admin Dashboard page with username "Test"
// new AdminDashboard("Test");
// For User Dashboard page
// new UserdashBoard();
// For Payment page
// new Payment();
// For Seller Dashboard page
// new SellerDashboard();
}
}