-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Reports pages for guests and volunteers for #271
- Loading branch information
Showing
6 changed files
with
15 additions
and
15 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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,19 @@ | ||
<script setup> | ||
import { config } from '@/config'; | ||
import DeliveryExplainer from '@/components/DeliveryExplainer.vue'; | ||
import { useAuthUserStore } from '@/stores/authUser' | ||
const user = useAuthUserStore() | ||
</script> | ||
|
||
<template> | ||
<div class="container"> | ||
<h1>Welcome!</h1> | ||
<p>Welcome to the {{config.ProjectLongName}}. Once you have | ||
registered, use your profile to customize how you interact with the {{config.OrganizationName}}. | ||
<p>Welcome to the {{config.ProjectLongName}}.</p> | ||
<p v-if="!user.isLoggedIn">This is the Guest application. Volunteers should use the Volunteer Portal link above.</p> | ||
<p v-if="config.EnableGuestLogin !== 'true'">Guest registration and login is not enabled at this time. Please use our website | ||
<a :href="config.MainOrgURL">{{config.MainOrgURL}}</a> for guest services. | ||
</p> | ||
|
||
<DeliveryExplainer></DeliveryExplainer> | ||
|
||
</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