-
Notifications
You must be signed in to change notification settings - Fork 0
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
Showing
13 changed files
with
101 additions
and
78 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,7 @@ | ||
<script> | ||
let value = ''; | ||
let extraProps = ''; | ||
let placeholder = ''; | ||
</script> | ||
|
||
<input bind:value class={extraProps} {placeholder} /> |
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,16 @@ | ||
<script lang="ts"> | ||
import clsx from 'clsx'; | ||
export let value = ''; | ||
export let extraProps = ''; | ||
export let label = ''; | ||
export let error = ''; | ||
</script> | ||
|
||
<div class={clsx('flex flex-col w-full border-black border-b-[0.5px]', extraProps)}> | ||
<div class="flex justify-between items-center mb-1"> | ||
<label for="password" class="text-base text-secondary">{label}</label> | ||
<span class="text-xs text-alert">{error}</span> | ||
</div> | ||
<input bind:value type="password" class="outline-none focus:outline-none" /> | ||
</div> |
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,5 @@ | ||
<div | ||
class="flex flex-col items-center mt-20 w-[576px] border border-light-gray rounded-xl mx-auto py-8" | ||
> | ||
<slot /> | ||
</div> |
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,6 +1,6 @@ | ||
export { default as AppParagraph } from './AppParagraph.svelte'; | ||
export { default as Button } from './Button.svelte'; | ||
export { default as Title } from './Title.svelte'; | ||
export { default as EnterSecretComponent } from './EnterSecretComponent.svelte'; | ||
export { default as Init } from './Init.svelte'; | ||
export { default as Login } from './Login.svelte'; | ||
export { default as SetupContainer } from './SetupContainer.svelte'; |
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 lang="ts"> | ||
import { Title, AppParagraph } from '$components'; | ||
import { SetupContainer } from '$components'; | ||
</script> | ||
|
||
<img src="/img/holo_logo.svg" alt="Holo Key Manager Logo" class="w-12 my-4" /> | ||
<Title>Setup Complete</Title> | ||
<div class="border-b-[0.5px] mb-4 border-light-gray w-full"> | ||
<AppParagraph | ||
extraProps="mx-auto text-center max-w-xs" | ||
text="Your Holo Key Manager setup is now complete." | ||
/> | ||
<AppParagraph | ||
extraProps="mx-auto text-center max-w-xs mb-4" | ||
text="You can now login to the extension by clicking the extension icon." | ||
/> | ||
</div> | ||
<SetupContainer> | ||
<img src="/img/holo_logo.svg" alt="Holo Key Manager Logo" class="w-12 my-4" /> | ||
<Title>Setup Complete</Title> | ||
<div class="border-b-[0.5px] mb-4 border-light-gray w-full"> | ||
<AppParagraph | ||
extraProps="mx-auto text-center max-w-xs" | ||
text="Your Holo Key Manager setup is now complete." | ||
/> | ||
<AppParagraph | ||
extraProps="mx-auto text-center max-w-xs mb-4" | ||
text="You can now login to the extension by clicking the extension icon." | ||
/> | ||
</div> | ||
</SetupContainer> |
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