Types
This commit is contained in:
parent
57bf5f878a
commit
c900fde255
4 changed files with 36 additions and 0 deletions
9
src/pages/forgot-password.astro
Normal file
9
src/pages/forgot-password.astro
Normal file
|
@ -0,0 +1,9 @@
|
|||
---
|
||||
import Layout from '../layouts/Layout.astro'
|
||||
---
|
||||
|
||||
<Layout
|
||||
Type="Forgot Password Verification Code"
|
||||
Message="The SudoVanilla Gateway has received a forgot password request with the following code. Please enter it in the page you opened to complete the password reset and continue."
|
||||
SubMessage=" SudoVanilla recommends using a password manager such as Bitwarden so you don't forget your password again in the future. If you did not attempt to send a forgot password request but received this email, please ignore it. The code will only be valid for 10 minutes."
|
||||
/>
|
9
src/pages/generic.astro
Normal file
9
src/pages/generic.astro
Normal file
|
@ -0,0 +1,9 @@
|
|||
---
|
||||
import Layout from '../layouts/Layout.astro'
|
||||
---
|
||||
|
||||
<Layout
|
||||
Type="Verification Code"
|
||||
Message="Please enter it in the page you opened to complete the sign in process and continue."
|
||||
SubMessage="The code will only be valid for 10 minutes."
|
||||
/>
|
9
src/pages/registeration.astro
Normal file
9
src/pages/registeration.astro
Normal file
|
@ -0,0 +1,9 @@
|
|||
---
|
||||
import Layout from '../layouts/Layout.astro'
|
||||
---
|
||||
|
||||
<Layout
|
||||
Type="Registerion Verification Code"
|
||||
Message="Welcome to the SudoVanilla Gateway! Looks like you're trying to create a new account here, use the following code below on the page you opened to complete the registeration and continue."
|
||||
SubMessage="Be sure to check out other services hosted by SudoVanilla. If you did not register an account on the SudoVanilla Gateway, please ignore it. The code will only be valid for 10 minutes."
|
||||
/>
|
9
src/pages/sign-in.astro
Normal file
9
src/pages/sign-in.astro
Normal file
|
@ -0,0 +1,9 @@
|
|||
---
|
||||
import Layout from '../layouts/Layout.astro'
|
||||
---
|
||||
|
||||
<Layout
|
||||
Type="Sign-In Verification Code"
|
||||
Message="The SudoVanilla Gateway has received a sign in attempt with the following code. Please enter it in the page you opened to complete the sign in process and continue."
|
||||
SubMessage="If you did not attempt to sign in but received this email, please ignore it. The code will only be valid for 10 minutes."
|
||||
/>
|
Loading…
Reference in a new issue