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

Added singup form #10

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
30 changes: 29 additions & 1 deletion src/components/Signup.js
Original file line number Diff line number Diff line change
@@ -3,7 +3,35 @@ import React from 'react'
const Signup = () => {
return (
<div>
I am signup
<div className="container register-form">
<div className="form">
<div className="note">
<p>This is a simpleRegister Form made using Boostrap.</p>
</div>

<div className="form-content">
<div className="row">
<div className="col-md-6">
<div className="form-group">
<input type="text" className="form-control" placeholder="Your Name *" value=""/>
</div>
<div className="form-group">
<input type="text" className="form-control" placeholder="Phone Number *" value=""/>
</div>
</div>
<div className="col-md-6">
<div className="form-group">
<input type="text" className="form-control" placeholder="Your Password *" value=""/>
</div>
<div className="form-group">
<input type="text" className="form-control" placeholder="Confirm Password *" value=""/>
</div>
</div>
</div>
<button type="button" className="btnSubmit">Submit</button>
</div>
</div>
</div>
</div>
)
}