mirror of
https://github.com/thegeneralist01/archivr
synced 2026-07-22 11:15:41 +02:00
73 lines
1.9 KiB
JavaScript
73 lines
1.9 KiB
JavaScript
import { useState } from 'react';
|
|
import { doSetup } from '../api.js';
|
|
|
|
export default function SetupPage({ onComplete }) {
|
|
const [username, setUsername] = useState('');
|
|
const [password, setPassword] = useState('');
|
|
const [confirm, setConfirm] = useState('');
|
|
const [error, setError] = useState(null);
|
|
const [loading, setLoading] = useState(false);
|
|
|
|
async function handleSubmit(e) {
|
|
e.preventDefault();
|
|
if (password !== confirm) {
|
|
setError('Passwords do not match');
|
|
return;
|
|
}
|
|
if (password.length < 8) {
|
|
setError('Password must be at least 8 characters');
|
|
return;
|
|
}
|
|
setError(null);
|
|
setLoading(true);
|
|
try {
|
|
await doSetup(username, password);
|
|
onComplete();
|
|
} catch (err) {
|
|
setError(err.message);
|
|
} finally {
|
|
setLoading(false);
|
|
}
|
|
}
|
|
|
|
return (
|
|
<div className="setup-page">
|
|
<h1>Welcome to Archivr</h1>
|
|
<p>Create your owner account to get started.</p>
|
|
<form onSubmit={handleSubmit}>
|
|
<label>
|
|
Username
|
|
<input
|
|
type="text"
|
|
value={username}
|
|
onChange={e => setUsername(e.target.value)}
|
|
autoFocus
|
|
required
|
|
/>
|
|
</label>
|
|
<label>
|
|
Password
|
|
<input
|
|
type="password"
|
|
value={password}
|
|
onChange={e => setPassword(e.target.value)}
|
|
required
|
|
/>
|
|
</label>
|
|
<label>
|
|
Confirm password
|
|
<input
|
|
type="password"
|
|
value={confirm}
|
|
onChange={e => setConfirm(e.target.value)}
|
|
required
|
|
/>
|
|
</label>
|
|
{error && <p className="error">{error}</p>}
|
|
<button type="submit" disabled={loading}>
|
|
{loading ? 'Creating account\u2026' : 'Create account'}
|
|
</button>
|
|
</form>
|
|
</div>
|
|
);
|
|
}
|