Add extra boxes to signup page which ask for login

This commit is contained in:
Ray 2023-09-12 08:43:22 +00:00 committed by GitHub
parent 1ac2e82dd7
commit ba5faef1e1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 9 additions and 1 deletions

View File

@ -12,7 +12,15 @@ export function Signup ( props ) {
<Form>
<Form.Group>
<Form.Label>Username</Form.Label>
<Form.Control name="text" placeholder='username'/>
<Form.Control type="text" name="username" placeholder='username'/>
</Form.Group>
<Form.Group>
<Form.Label>Email</Form.Label>
<Form.Control type="email" name="email" placeholder='you@example.com'/>
</Form.Group>
<Form.Group>
<Form.Label>Password</Form.Label>
<Form.Control type="password" name="password" placeholder='password'/>
</Form.Group>
</Form>
</Col>