forked from DarshilTheCoder/Prakarsh-23
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
bf16ea2
commit 78ff09a
Showing
2 changed files
with
31 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |