-
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
7 changed files
with
361 additions
and
0 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,66 @@ | ||
<!-- SPDX-License-Identifier: AGPL-3.0-only --> | ||
|
||
<!-- ████████████████████████████████████████████████ --> | ||
<!-- █─▄▄▄─█▄─██─▄█▄─▄█▄─▀─▄█▄─▄─▀█▄─█─▄█─▄─▄─█▄─▄▄─█ --> | ||
<!-- █─██▀─██─██─███─███▀─▀███─▄─▀██▄─▄████─████─▄█▀█ --> | ||
<!-- ▀───▄▄▀▀▄▄▄▄▀▀▄▄▄▀▄▄█▄▄▀▄▄▄▄▀▀▀▄▄▄▀▀▀▄▄▄▀▀▄▄▄▄▄▀ --> | ||
<!-- https://github.com/QuixByte/qb/blob/main/LICENSE --> | ||
|
||
<!-- (c) Copyright 2023 The QuixByte Authors --> | ||
|
||
<script lang="ts"> | ||
export let name: string; | ||
export let password: string; | ||
</script> | ||
|
||
<main> | ||
<form> | ||
<h1>Welcome back</h1> | ||
|
||
<p>Please sign in to continue.</p> | ||
|
||
<br /> | ||
|
||
<div class="field" class:content={name}> | ||
<input name="name" id="name" bind:value={name} /> | ||
<label for="name">Name</label> | ||
</div> | ||
|
||
<div class="field" class:content={password}> | ||
<input | ||
name="password" | ||
id="password" | ||
type="password" | ||
bind:value={password} | ||
/> | ||
<label for="password">Password</label> | ||
</div> | ||
|
||
<button>Continue</button> | ||
|
||
<p class="fnote"> | ||
Don't have an account? <a class="link" href="/signup">Sign up</a> | ||
</p> | ||
</form> | ||
</main> | ||
|
||
<style> | ||
main { | ||
display: flex; | ||
align-items: center; | ||
justify-content: center; | ||
min-height: 100vh; | ||
} | ||
form { | ||
display: flex; | ||
flex-direction: column; | ||
row-gap: 20px; | ||
width: 100%; | ||
max-width: 450px; | ||
padding: 40px 40px; | ||
background-color: white; | ||
border-radius: 20px; | ||
border: 1px solid rgba(0, 0, 0, 0.1); | ||
} | ||
</style> |
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,80 @@ | ||
<!-- SPDX-License-Identifier: AGPL-3.0-only --> | ||
|
||
<!-- ████████████████████████████████████████████████ --> | ||
<!-- █─▄▄▄─█▄─██─▄█▄─▄█▄─▀─▄█▄─▄─▀█▄─█─▄█─▄─▄─█▄─▄▄─█ --> | ||
<!-- █─██▀─██─██─███─███▀─▀███─▄─▀██▄─▄████─████─▄█▀█ --> | ||
<!-- ▀───▄▄▀▀▄▄▄▄▀▀▄▄▄▀▄▄█▄▄▀▄▄▄▄▀▀▀▄▄▄▀▀▀▄▄▄▀▀▄▄▄▄▄▀ --> | ||
<!-- https://github.com/QuixByte/qb/blob/main/LICENSE --> | ||
|
||
<!-- (c) Copyright 2023 The QuixByte Authors --> | ||
|
||
<script lang="ts"> | ||
export let name: string; | ||
export let password: string; | ||
export let cpassword: string; | ||
</script> | ||
|
||
<main> | ||
<form> | ||
<h1>Create your account</h1> | ||
|
||
<p> | ||
Lorem ipsum dolor sit amet, qui minim labore adipisicing minim sint cillum | ||
sint consectetur cupidatat. | ||
</p> | ||
|
||
<br /> | ||
|
||
<div class="field" class:content={name}> | ||
<input name="name" id="name" bind:value={name} /> | ||
<label for="name">Name</label> | ||
</div> | ||
|
||
<div class="field" class:content={password}> | ||
<input | ||
name="password" | ||
id="password" | ||
type="password" | ||
bind:value={password} | ||
/> | ||
<label for="password">Password</label> | ||
</div> | ||
|
||
<div class="field" class:content={cpassword}> | ||
<input | ||
name="cpassword" | ||
id="cpassword" | ||
type="cpassword" | ||
bind:value={cpassword} | ||
/> | ||
<label for="password">Confirm password</label> | ||
</div> | ||
|
||
<button>Continue</button> | ||
|
||
<p class="fnote"> | ||
Already have an account? <a class="link" href="/signin">Sign in</a> | ||
</p> | ||
</form> | ||
</main> | ||
|
||
<style> | ||
main { | ||
display: flex; | ||
align-items: center; | ||
justify-content: center; | ||
min-height: 100vh; | ||
} | ||
form { | ||
display: flex; | ||
flex-direction: column; | ||
row-gap: 20px; | ||
width: 100%; | ||
max-width: 450px; | ||
padding: 40px 40px; | ||
background-color: white; | ||
border-radius: 20px; | ||
border: 1px solid rgba(0, 0, 0, 0.1); | ||
} | ||
</style> |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.