Skip to content

Commit

Permalink
Commit
Browse files Browse the repository at this point in the history
  • Loading branch information
ask1811 committed Mar 18, 2023
1 parent df227d9 commit 30d5d42
Showing 1 changed file with 28 additions and 27 deletions.
55 changes: 28 additions & 27 deletions frontend/src/pages/Signup/Signup.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,38 +2,39 @@ import React from 'react'
import './Signup.css'
const Signup = () => {
return (
<div className='signup-wrapper container'>
<div className='motham'>
<div className='signup-wrapper container'>
<div>
<form name="my" class="form">
<h2>Sign Up</h2>
<div className="input-group">
<input type="text" name="name" id="loginUser" />
<label for="loginUser">Name</label>
</div>
<div className="input-group">
<input type="text" name="email" id="signupUser" />
<label for="signupUser">E-mail</label>
</div>
<div className="input-group">
<input
type="password"
name="password"
id="loginPassword"

<div>
<form name="my" class="form">
<h2>Sign Up</h2>
<div className="input-group">
<input type="text" name="name" id="loginUser" />
<label for="loginUser">Name</label>
</div>
<div className="input-group">
<input type="text" name="email" id="signupUser" />
<label for="signupUser">E-mail</label>
</div>
<div className="input-group">
<input
type="password"
name="password"
id="loginPassword"
required
/>
<label for="loginPassword">Password</label>
</div>

required
/>
<label for="loginPassword">Password</label>
</div>
{
<button type="submit" className="submit-btn" >Signup</button>
}

{
<button type="submit" className="submit-btn" >Signup</button>
}

</form>
</form>

</div >
</div >
</div >
</div>
)
}

Expand Down

0 comments on commit 30d5d42

Please sign in to comment.