-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
4c8171f
commit 03428e9
Showing
3 changed files
with
28 additions
and
9 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
--- | ||
import Layout from '../layouts/Layout.astro'; | ||
import MainSection from '../layouts/MainSection.astro'; | ||
import Modal from '../components/Modal.astro'; | ||
--- | ||
|
||
<Layout title="Credential Inaccessible"> | ||
<MainSection /> | ||
<Modal id="main-modal" open={true} allowCancel={false}> | ||
<main slot="main" class="pt-10 pb-12 px-10 flex flex-col gap-5 items-center"> | ||
<h3 class="text-3xl">Claim page expired</h3> | ||
|
||
<p class="text-xl leading-6"> | ||
Access to the credential claim page has expired. If you haven't yet collected your credential, please open a new page using the original link that was sent to you. | ||
</p> | ||
</main> | ||
</Modal> | ||
</Layout> |
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