Description
The signup/contact form page title reads "Patient Contact Form" which is confusing for new users who clicked a "Sign Up" button.
Root Cause
`/pages/patient/contactForm.vue`, line 9:
```html
Patient Contact Form
\`\`\`
The title is hardcoded and not descriptive of the user action (signing up).
Fix
- Change the title to something clearer like "Patient Registration" or use i18n: `{{ $t("Patient Registration") }}`
- Add the key to both locale files
Acceptance Criteria
Description
The signup/contact form page title reads "Patient Contact Form" which is confusing for new users who clicked a "Sign Up" button.
Root Cause
`/pages/patient/contactForm.vue`, line 9:
```html
Patient Contact Form
\`\`\` The title is hardcoded and not descriptive of the user action (signing up).Fix
Acceptance Criteria