start work on signup page

This commit is contained in:
andrzej 2024-06-03 22:51:49 +02:00
parent a8fcb17ce1
commit 3e569da684
1 changed files with 31 additions and 0 deletions

View File

@ -0,0 +1,31 @@
import { Form } from "react-router-dom";
export default function SignUp() {
return <>
<Form
method="post"
id="login-form"
>
<label>
<input
placeholder="Username goes here..."
aria-label="Username"
type="text"
name="username"
defaultValue=""
/>
</label>
<label>
<input
placeholder="Password goes here..."
aria-label="Password"
type="text"
name="password"
defaultValue=""
/>
</label>
</Form >
</>
}