barebones authentication
This commit is contained in:
parent
522f4270e8
commit
4912a0dbe7
3 changed files with 91 additions and 0 deletions
7
web/pw-server/src/lib/auth.ts
Normal file
7
web/pw-server/src/lib/auth.ts
Normal file
|
@ -0,0 +1,7 @@
|
||||||
|
export function set_session_token(token: string) {
|
||||||
|
window.localStorage.setItem('session', token);
|
||||||
|
}
|
||||||
|
|
||||||
|
export function get_session_token(): string | null {
|
||||||
|
return window.localStorage.getItem('session');
|
||||||
|
}
|
46
web/pw-server/src/routes/login.svelte
Normal file
46
web/pw-server/src/routes/login.svelte
Normal file
|
@ -0,0 +1,46 @@
|
||||||
|
<script lang="ts">
|
||||||
|
import { get_session_token, set_session_token } from '$lib/auth';
|
||||||
|
import { goto } from '$app/navigation';
|
||||||
|
|
||||||
|
let username: string | undefined;
|
||||||
|
let password: string | undefined;
|
||||||
|
|
||||||
|
const onSubmit = () => {
|
||||||
|
fetch('/api/login', {
|
||||||
|
method: 'POST',
|
||||||
|
headers: {
|
||||||
|
'Content-Type': 'application/json'
|
||||||
|
},
|
||||||
|
body: JSON.stringify({
|
||||||
|
username,
|
||||||
|
password
|
||||||
|
})
|
||||||
|
})
|
||||||
|
.then((response) => {
|
||||||
|
if (!response.ok) {
|
||||||
|
throw Error(response.statusText);
|
||||||
|
}
|
||||||
|
return response.text();
|
||||||
|
})
|
||||||
|
.then((token) => {
|
||||||
|
set_session_token(token);
|
||||||
|
goto("/")
|
||||||
|
});
|
||||||
|
};
|
||||||
|
|
||||||
|
function loggedIn(): boolean {
|
||||||
|
return get_session_token() != null
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
|
||||||
|
{#if loggedIn()}
|
||||||
|
you are logged in
|
||||||
|
{/if}
|
||||||
|
|
||||||
|
<form on:submit|preventDefault={onSubmit}>
|
||||||
|
<label for="username">Username</label>
|
||||||
|
<input name="username" bind:value={username} />
|
||||||
|
<label for="password">Password</label>
|
||||||
|
<input type="password" name="password" bind:value={password} />
|
||||||
|
<button type="submit">Log in</button>
|
||||||
|
</form>
|
38
web/pw-server/src/routes/register.svelte
Normal file
38
web/pw-server/src/routes/register.svelte
Normal file
|
@ -0,0 +1,38 @@
|
||||||
|
<script lang="ts">
|
||||||
|
let username: string | undefined;
|
||||||
|
let password: string | undefined;
|
||||||
|
|
||||||
|
const onSubmit = () => {
|
||||||
|
if (username === undefined || username.trim() === '') {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (password === undefined || password.trim() === '') {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
fetch('/api/register', {
|
||||||
|
method: 'POST',
|
||||||
|
headers: {
|
||||||
|
'Content-Type': 'application/json'
|
||||||
|
},
|
||||||
|
body: JSON.stringify({
|
||||||
|
username,
|
||||||
|
password
|
||||||
|
})
|
||||||
|
})
|
||||||
|
.then((resp) => resp.json())
|
||||||
|
.then((data) => {
|
||||||
|
console.log(data);
|
||||||
|
});
|
||||||
|
};
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<h1>Register</h1>
|
||||||
|
<form on:submit|preventDefault={onSubmit}>
|
||||||
|
<label for="username">Username</label>
|
||||||
|
<input name="username" bind:value={username} />
|
||||||
|
<label for="password">Password</label>
|
||||||
|
<input type="password" name="password" bind:value={password} />
|
||||||
|
<button type="submit">Register</button>
|
||||||
|
</form>
|
Loading…
Reference in a new issue