Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
34 changes: 26 additions & 8 deletions src/components/signup.component.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import React, { Component } from "react";
import React, { Component } from 'react';

export default class SignUp extends Component {
render() {
Expand All @@ -8,29 +8,47 @@ export default class SignUp extends Component {

<div className="form-group">
<label>First name</label>
<input type="text" className="form-control" placeholder="First name" />
<input
type="text"
className="form-control"
placeholder="First name"
/>
</div>

<div className="form-group">
<label>Last name</label>
<input type="text" className="form-control" placeholder="Last name" />
<input
type="text"
className="form-control"
placeholder="Last name"
/>
</div>

<div className="form-group">
<label>Email address</label>
<input type="email" className="form-control" placeholder="Enter email" />
<input
type="email"
className="form-control"
placeholder="Enter email"
/>
</div>

<div className="form-group">
<label>Password</label>
<input type="password" className="form-control" placeholder="Enter password" />
<input
type="password"
className="form-control"
placeholder="Enter password"
/>
</div>

<button type="submit" className="btn btn-primary btn-block">Sign Up</button>
<button type="submit" className="btn btn-primary btn-block">
Sign Up
</button>
<p className="forgot-password text-right">
Already registered <a href="#">sign in?</a>
Already registered <a href="/">sign in?</a>
</p>
</form>
);
}
}
}