-
Notifications
You must be signed in to change notification settings - Fork 51
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #354 from bcgov/feature/moreReservationFlow
More reservation flow
- Loading branch information
Showing
7 changed files
with
301 additions
and
115 deletions.
There are no files selected for viewing
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
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
38 changes: 38 additions & 0 deletions
38
services/tenant-ui/frontend/src/components/reservation/ReservationConfirmation.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,38 @@ | ||
<template> | ||
<Card class="info-card mt-4 mb-6"> | ||
<template #title> | ||
<i class="pi pi-check-circle info-card-icon"></i> <br /> | ||
Thank You! | ||
</template> | ||
<template #content> | ||
<p class="text-center"> | ||
Your request has been submitted successfully. <br /> | ||
An email has also been sent to {{ email }} with the reservation number | ||
below. | ||
</p> | ||
</template> | ||
</Card> | ||
|
||
<div class="field w-full"> | ||
<label for="">Email Address</label> | ||
<InputText :value="email" type="text" readonly class="w-full" /> | ||
</div> | ||
|
||
<div class="field w-full"> | ||
<label for="">Reservation ID</label> | ||
<InputText :value="id" type="text" readonly class="w-full" /> | ||
</div> | ||
</template> | ||
|
||
<script setup lang="ts"> | ||
// Vue | ||
import { ref, reactive } from 'vue'; | ||
// PrimeVue/Validation/etc | ||
import Card from 'primevue/card'; | ||
import InputText from 'primevue/inputtext'; | ||
defineProps<{ | ||
email: string; | ||
id: string; | ||
}>(); | ||
</script> |
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
Oops, something went wrong.