-
Notifications
You must be signed in to change notification settings - Fork 0
/
Login.jsx
27 lines (26 loc) · 872 Bytes
/
Login.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
import "./login.css";
export default function Login() {
return (
<div className="login">
<div className="loginWrapper">
<div className="loginLeft">
<h3 className="loginLogo">Lamasocial</h3>
<span className="loginDesc">
Connect with friends and the world around you on Lamasocial.
</span>
</div>
<div className="loginRight">
<div className="loginBox">
<input placeholder="Email" className="loginInput" />
<input placeholder="Password" className="loginInput" />
<button className="loginButton">Log In</button>
<span className="loginForgot">Forgot Password?</span>
<button className="loginRegisterButton">
Create a New Account
</button>
</div>
</div>
</div>
</div>
);
}