As a user of the bounty platform, I want to be able to contact the support team so that I can get assistance with issues or inquiries I might have about collaborative research.
Acceptance Criteria
[ ] User can find the Contact Us option in the footer of the website.
[ ] User can access a form to submit their inquiry or issue.
[ ] The form requires the user to enter their name, email, and message.
[ ] User receives confirmation that their message has been sent.
[ ] Support team receives the message and can respond via email.
[ ] There is a FAQ or help section available before contacting support.
[ ] The system validates the form fields before submission.
[ ] There is an option for the user to attach files relevant to their inquiry.
sequenceDiagram
participant U as User
participant F as Contact Form
participant S as System
U->>F: Accesses Contact Us form
F->>U: Presents fields for name, email, message
U->>F: Fills in details
F->>S: Validates information
S->>U: Confirms message sent
S->>Support Team: Forwards message
Contact Us Feature
As a user of the bounty platform, I want to be able to contact the support team so that I can get assistance with issues or inquiries I might have about collaborative research.
Acceptance Criteria