Skip to content

Commit

Permalink
Merge pull request #1145 from ThatConference/cs/now
Browse files Browse the repository at this point in the history
fix: updating account verification message
  • Loading branch information
theClarkSell authored Jan 8, 2022
2 parents d6b51ee + 5e8ef1f commit faad92b
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 12 deletions.
12 changes: 6 additions & 6 deletions src/_components/nav/_MobileUsersProfile.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -9,28 +9,28 @@
const { isEmpty } = lodash;
const loggedInMenuItems = [
{
href: '/my/profiles',
href: '/my/profiles/',
text: 'My Profiles'
},
{
href: '/my/settings',
href: '/my/settings/',
text: 'My Settings'
},
{
href: '/my/network',
href: '/my/network/',
text: 'My Network'
},
{
href: '/my/submissions',
href: '/my/submissions/',
text: 'My Submissions'
},
{
href: '/my/favorites',
href: '/my/favorites/',
text: 'My Favorites'
},
{
href: '/logout',
href: '/logout/',
text: 'Logout',
rel: 'external'
}
Expand Down
19 changes: 13 additions & 6 deletions src/routes/verify-account.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -36,12 +36,14 @@
<h1 class="text-4xl font-extrabold text-thatBlue-800 tracking-tight sm:text-5xl">
THAT Account Unverified
</h1>
<p class="max-w-3xl mt-1 text-base text-gray-500">

<p class="prose prose-lg max-w-3xl mt-4 text-gray-500">
You account is current unverified. To continue please check your email and finish
verification or if you think you're seeing this in error, ask us in chat, or email
us at
the login verification. If you've done so and are still seeing this error <span
class="font-extrabold">please logout and login again</span
>. Still having issues, then please ask us in chat, or email us at
<a
href="mailto:[email protected]?subject=Account Verification"
href="mailto:[email protected]?subject=Account Verification Problem"
rel="noopener"
target="_blank"
class="text-thatOrange-400 hover:text-thatOrange-500 hover:underline"
Expand All @@ -51,8 +53,13 @@
</div>
</div>
</div>
<div class="mt-10 flex sm:border-l sm:border-transparent sm:pl-6">
<StandardLink class="h-3/4" href="/">Head back to camp</StandardLink>
<div class="mt-10 flex justify-end">
<div class="flex sm:border-l sm:border-transparent sm:pl-6">
<StandardLink class="h-3/4" href="/">Home</StandardLink>
</div>
<div class="flex sm:border-l sm:border-transparent sm:pl-6">
<StandardLink class="h-3/4" href="/logout/" rel="external">Logout</StandardLink>
</div>
</div>
</div>
</main>
Expand Down

1 comment on commit faad92b

@vercel
Copy link

@vercel vercel bot commented on faad92b Jan 8, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.