Add extra boxes to signup page which ask for login
This commit is contained in:
parent
1ac2e82dd7
commit
ba5faef1e1
|
@ -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>
|
||||
|
|
Loading…
Reference in New Issue