-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Restructure handling assistance submission confirmation
- Loading branch information
Showing
6 changed files
with
94 additions
and
51 deletions.
There are no files selected for viewing
31 changes: 31 additions & 0 deletions
31
frontend/src/components/housing/enquiry/EnquiryIntakeConfirmation.vue
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
<script setup lang="ts"> | ||
import { Message } from '@/lib/primevue'; | ||
import { RouteName } from '@/utils/enums/application'; | ||
// Props | ||
type Props = { | ||
assignedActivityId: string; | ||
}; | ||
const props = withDefaults(defineProps<Props>(), {}); | ||
</script> | ||
|
||
<template> | ||
<div> | ||
<h2>Confirmation of Submission</h2> | ||
<Message | ||
class="border-none" | ||
severity="success" | ||
:closable="false" | ||
> | ||
Your enquiry has been successfully submitted. | ||
</Message> | ||
<h3>Confirmation ID: {{ props.assignedActivityId }}</h3> | ||
<div> | ||
A Housing Navigator will review your submission and contact you. Please check your email for the confirmation | ||
email and keep the confirmation ID for future reference. | ||
</div> | ||
<div class="mt-4"><router-link :to="{ name: RouteName.HOME }">Go to Homepage</router-link></div> | ||
</div> | ||
</template> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
31 changes: 31 additions & 0 deletions
31
frontend/src/components/housing/submission/SubmissionIntakeConfirmation.vue
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
<script setup lang="ts"> | ||
import { Message } from '@/lib/primevue'; | ||
import { RouteName } from '@/utils/enums/application'; | ||
// Props | ||
type Props = { | ||
assignedActivityId: string; | ||
}; | ||
const props = withDefaults(defineProps<Props>(), {}); | ||
</script> | ||
|
||
<template> | ||
<div> | ||
<h2>Confirmation of Submission</h2> | ||
<Message | ||
class="border-none" | ||
severity="success" | ||
:closable="false" | ||
> | ||
Your application has been successfully submitted. | ||
</Message> | ||
<h3>Confirmation ID: {{ props.assignedActivityId }}</h3> | ||
<div> | ||
Your submission will be reviewed by a Housing Navigator. You may be contacted if needed. Please check your email | ||
for the confirmation email and keep the confirmation ID for future reference. | ||
</div> | ||
<div class="mt-4"><router-link :to="{ name: RouteName.HOME }">Go to Homepage</router-link></div> | ||
</div> | ||
</template> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters