File size: 850 Bytes
cf6c0e0
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<!DOCTYPE html>
<html lang="en">
<head><meta charset="UTF-8"><title>Login</title></head>
<body style="font-family:sans-serif; background:#f0f2f5">
  <div style="background:#fff">
    <h2 style="text-align:center; color:#1a1a1a">Sign In</h2>
    <label style="font-size:14px; color:#555">Email</label>
    <input type="email" placeholder="you@example.com" style="border:1px solid #ddd; font-size:14px">
    <label style="font-size:14px; color:#555">Password</label>
    <input type="password" placeholder="••••••••" style="border:1px solid #ddd; font-size:14px">
    <button style="background:#4f46e5; color:#fff; border:none; font-size:15px; cursor:pointer">Sign In</button>
    <p style="text-align:center; font-size:13px; color:#888">Don't have an account? <a href="#" style="color:#4f46e5">Sign up</a></p>
  </div>
</body>
</html>