From 01deea380a1e883fd6e6a7c77cd6a838b3cfa349 Mon Sep 17 00:00:00 2001 From: Teriuihi Date: Tue, 6 Aug 2024 22:21:43 +0200 Subject: [PATCH] Add Staff Application Form handling Introduced `StaffAppController` and `StaffAppFormData` to handle staff application form submissions. The controller now stores user data, initiates email verification, and provides appropriate responses based on the verification outcome. Additionally, updated `application.properties` and cleaned up IntelliJ workspace.xml. --- .idea/workspace.xml | 159 +++++++++++++++++- .../alttd/forms/apply/StaffAppController.java | 42 +++++ .../alttd/forms/apply/StaffAppFormData.java | 118 +++++++++++++ src/main/resources/application.properties | 3 +- 4 files changed, 313 insertions(+), 9 deletions(-) create mode 100644 src/main/java/com/alttd/forms/apply/StaffAppController.java create mode 100644 src/main/java/com/alttd/forms/apply/StaffAppFormData.java diff --git a/.idea/workspace.xml b/.idea/workspace.xml index 19becf7..9e834d2 100644 --- a/.idea/workspace.xml +++ b/.idea/workspace.xml @@ -4,9 +4,16 @@