USER Registration Activity
USER Registration Activity
_________________________________________ _______________________________
• Open your IDE and create a new Java project named "UserRegistrationForm".
• Select "New" > "JFrame Form" (or similar depending on your IDE).
• Add JLabels for prompting user input (e.g., "Student ID:", "Name:", etc.).
• Add JTextFields for user input (for each field: student ID, name, phone number, department,
email address, address).
• Arrange the components using layout managers (e.g., GridLayout, GridBagLayout, etc.)
for proper alignment.
• In the actionPerformed method, retrieve the values entered by the user from the text fields and
process them as needed (e.g., display in a dialog box).
• Test the functionality by entering values into the fields and clicking the submit button.
SAMPLE OUTPUT:
V. Screenshot of your output: