-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSignup.jsx
31 lines (29 loc) · 901 Bytes
/
Signup.jsx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
/* eslint-disable react/button-has-type */
import './login.css';
const Signup = () => (
<div className="form signup">
<div className="form-header">
<div className="show-signup">Sign Up</div>
<div className="show-signin">Sign In</div>
</div>
<div className="arrow" />
<div className="form-elements">
<div className="form-element">
<input type="email" placeholder="Email" />
</div>
<div className="form-element">
<input type="text" placeholder="User ID" />
</div>
<div className="form-element">
<input type="password" placeholder="Password" />
</div>
<div className="form-element">
<input type="password" placeholder="Confirm password" />
</div>
<div className="form-element">
<button id="submit-btn">Sign Up</button>
</div>
</div>
</div>
);
export default Signup;