Skip to content

Commit

Permalink
done signup
Browse files Browse the repository at this point in the history
  • Loading branch information
Manavsheth78 committed Feb 10, 2023
1 parent bf16ea2 commit 78ff09a
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/App.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ const App = () => {
{/* <Team /> */}
{/* <Sponsor /> */}
<Glimpse />
{/* <Signup/> */}
<Signup/>
<Footer />
</div>
);
Expand Down
30 changes: 30 additions & 0 deletions src/components/signup/Signup.jsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
import React from 'react'
import './Signup.css'
const Signup = () => {
return (

<div className="signup" id="sign">
<div className="shead">
<h1> SIGN UP</h1>
<p> Sign in now and register for upcoming events and <br/>
future announcements.</p>
</div>
<div className="scontent">
<div className="inputbox">
<div className="rect" />

<input type="email" required="required" />
</div>
<button className="btn-primary">
Get Link
<div className="sbtn" />

</button>

</div>

</div>
)
}

export default Signup

0 comments on commit 78ff09a

Please sign in to comment.