File size: 944 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="margin:0; background:#f0f2f5; align-items:center; min-height:100vh">
  <div style="background:#fff; border-radius:8px; width:320px">
    <h2 style="margin:0 0 24px; color:#1a1a1a">Sign In</h2>
    <label style="display:block; font-size:14px">Email</label>
    <input type="email" placeholder="you@example.com" style="width:100%; padding:10px 12px; border-radius:6px; margin-bottom:16px">
    <label style="display:block; font-size:14px">Password</label>
    <input type="password" placeholder="••••••••" style="width:100%; padding:10px 12px; border-radius:6px; margin-bottom:24px">
    <button style="width:100%; background:#4f46e5; border:none; font-size:15px">Sign In</button>
    <p style="text-align:center; font-size:13px">Don't have an account? <a href="#" style="color:#4f46e5">Sign up</a></p>
  </div>
</body>
</html>