101 lines
3.3 KiB
Svelte
101 lines
3.3 KiB
Svelte
<script lang="ts">
|
|
import {postJson} from "@welshman/lib"
|
|
import {preventDefault} from "@lib/html"
|
|
import UserRounded from "@assets/icons/user-rounded.svg?dataurl"
|
|
import Key from "@assets/icons/key-minimalistic.svg?dataurl"
|
|
import AltArrowRight from "@assets/icons/alt-arrow-right.svg?dataurl"
|
|
import Icon from "@lib/components/Icon.svelte"
|
|
import FieldInline from "@lib/components/FieldInline.svelte"
|
|
import Button from "@lib/components/Button.svelte"
|
|
import Divider from "@lib/components/Divider.svelte"
|
|
import Spinner from "@lib/components/Spinner.svelte"
|
|
import LogIn from "@app/components/LogIn.svelte"
|
|
import InfoNostr from "@app/components/InfoNostr.svelte"
|
|
import SignUpProfile from "@app/components/SignUpProfile.svelte"
|
|
import SignUpSuccess from "@app/components/SignUpSuccess.svelte"
|
|
import {pushModal} from "@app/util/modal"
|
|
import {BURROW_URL, PLATFORM_NAME} from "@app/core/state"
|
|
import {pushToast} from "@app/util/toast"
|
|
|
|
const login = () => pushModal(LogIn)
|
|
|
|
const signupPassword = async () => {
|
|
loading = true
|
|
|
|
try {
|
|
const res = await postJson(BURROW_URL + "/user", {email, password})
|
|
|
|
if (res.error) {
|
|
pushToast({message: res.error, theme: "error"})
|
|
} else {
|
|
pushModal(SignUpSuccess, {email}, {replaceState: true})
|
|
}
|
|
} finally {
|
|
loading = false
|
|
}
|
|
}
|
|
|
|
const usePassword = () => {
|
|
if (BURROW_URL) {
|
|
signupPassword()
|
|
}
|
|
}
|
|
|
|
const next = () => pushModal(SignUpProfile)
|
|
|
|
let email = $state("")
|
|
let password = $state("")
|
|
let loading = $state(false)
|
|
</script>
|
|
|
|
<form class="column gap-4" onsubmit={preventDefault(usePassword)}>
|
|
<h1 class="heading">Sign up with Nostr</h1>
|
|
<p class="m-auto max-w-sm text-center">
|
|
{PLATFORM_NAME} is built using the
|
|
<Button class="link" onclick={() => pushModal(InfoNostr)}>nostr protocol</Button>, which gives
|
|
users control over their digital identity using <strong>cryptographic key pairs</strong>.
|
|
</p>
|
|
{#if BURROW_URL}
|
|
<FieldInline>
|
|
{#snippet label()}
|
|
<p>Email</p>
|
|
{/snippet}
|
|
{#snippet input()}
|
|
<label class="input input-bordered flex w-full items-center gap-2">
|
|
<Icon icon={UserRounded} />
|
|
<input bind:value={email} />
|
|
</label>
|
|
{/snippet}
|
|
</FieldInline>
|
|
<FieldInline>
|
|
{#snippet label()}
|
|
<p>Password</p>
|
|
{/snippet}
|
|
{#snippet input()}
|
|
<label class="input input-bordered flex w-full items-center gap-2">
|
|
<Icon icon={Key} />
|
|
<input bind:value={password} type="password" />
|
|
</label>
|
|
{/snippet}
|
|
</FieldInline>
|
|
<Button type="submit" class="btn btn-primary" disabled={loading || !email || !password}>
|
|
<Spinner {loading}>Sign Up</Spinner>
|
|
<Icon icon={AltArrowRight} />
|
|
</Button>
|
|
<p class="text-sm opacity-75">
|
|
Note that your email and password will only work to log in to {PLATFORM_NAME}. To use your key
|
|
on other nostr applications, you can create a nostr key yourself, or export your key from {PLATFORM_NAME}
|
|
later.
|
|
</p>
|
|
<Divider>Or</Divider>
|
|
{/if}
|
|
<Button onclick={next} class="btn {email || password ? 'btn-neutral' : 'btn-primary'}">
|
|
<Icon icon={Key} />
|
|
Generate a key
|
|
</Button>
|
|
<div class="text-sm">
|
|
Already have an account?
|
|
<Button class="link" onclick={login}>Log in instead</Button>
|
|
</div>
|
|
</form>
|