blob: b707b7d7d032347017219944358798c4fca710d0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
|
import { useContext } from 'preact/hooks';
import { useSignal } from '@preact/signals';
import { route } from 'preact-router';
import { Pb } from '../pb.ts';
export const SignUp = () => {
const pb = useContext(Pb);
const username = useSignal('');
const email = useSignal('');
const password = useSignal('');
const confirm = useSignal('');
const onSubmit = async (event: SubmitEvent) => {
event.preventDefault();
const user = await pb.collection('users').create({
username: username.value,
email: email.value,
emailVisibility: true,
password: password.value,
passwordConfirm: confirm.value,
});
if (pb.authStore.isValid) {
route('/' + user.username);
}
};
return (
<main>
<form onSubmit={onSubmit}>
<h1>Sign Up</h1>
<p>
Already have an account? <a href="/login">Log in</a>
</p>
<hr />
<label>
Username
<input type="text" placeholder="Username" value={username} onInput={e => username.value = e.target.value} />
</label>
<label>
Email
<input type="text" placeholder="Email" value={email} onInput={e => email.value = e.target.value} />
</label>
<label>
Password
<input type="password" placeholder="Password" value={password} onInput={e => password.value = e.target.value} />
</label>
<label>
Confirm password
<input type="password" placeholder="Confirm password" value={confirm} onInput={e => confirm.value = e.target.value} />
</label>
<input type="submit" value="Continue" />
</form>
</main>
);
};
|