start work on signup page
This commit is contained in:
parent
a8fcb17ce1
commit
3e569da684
|
@ -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 >
|
||||||
|
</>
|
||||||
|
}
|
Loading…
Reference in New Issue