-
-
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.
Merge pull request #245 from cryptomator/redesigned-unlock-success
Redesigned unlock success
- Loading branch information
Showing
2 changed files
with
86 additions
and
54 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,24 @@ | ||
<template> | ||
<div class="max-w-7xl mx-auto sm:px-6 lg:px-8"> | ||
<div class="pt-8 pb-4 shrink-0 flex items-center"> | ||
<img src="/logo.svg" class="h-8" alt="Logo"/> | ||
<span class="font-headline font-bold text-primary ml-2 pb-px">CRYPTOMATOR HUB</span> | ||
<nav class="bg-tertiary2"> | ||
<div class="max-w-7xl mx-auto sm:px-6 lg:px-8 h-16 flex-1 flex items-center justify-center sm:items-stretch sm:justify-start"> | ||
<div class="shrink-0 flex items-center"> | ||
<img src="/logo.svg" class="h-8" alt="Logo"/> | ||
<span class="font-headline font-bold text-primary ml-2 pb-px">CRYPTOMATOR HUB</span> | ||
</div> | ||
</div> | ||
</nav> | ||
|
||
<div class="relative shadow-xl sm:rounded-2xl sm:overflow-hidden"> | ||
<div class="absolute inset-0"> | ||
<div class="absolute inset-0 bg-gradient-to-r from-primary-l1 to-primary mix-blend-multiply" /> | ||
</div> | ||
<div class="relative px-4 py-16 sm:px-6 sm:py-24 lg:py-32 lg:px-8"> | ||
<h1 class="text-center text-4xl font-extrabold tracking-tight sm:text-5xl lg:text-6xl text-white"> | ||
Unlock failed | ||
</h1> | ||
<p class="mt-6 max-w-lg mx-auto text-center text-xl text-primary-l2 sm:max-w-3xl"> | ||
Your unlock failed unexpectedly. Please try again. | ||
</p> | ||
<div class="max-w-7xl mx-auto px-4 py-12 sm:px-6 lg:px-8 flex justify-center"> | ||
<div class="bg-white px-4 py-5 shadow sm:rounded-lg sm:p-6 text-center sm:w-full sm:max-w-lg"> | ||
<div class="flex justify-center mb-3 sm:mb-5"> | ||
<img src="/logo.svg" class="h-12" alt="Logo" aria-hidden="true" /> | ||
</div> | ||
<h1 class="text-2xl leading-6 font-medium text-gray-900"> | ||
Unlock failed | ||
</h1> | ||
<p class="mt-6 text-sm text-gray-500"> | ||
Your unlock failed unexpectedly. Please try again. | ||
</p> | ||
</div> | ||
</div> | ||
</template> | ||
</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