Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixed a little bug #1

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
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>
);
}
}
}