File size: 859 Bytes
cf6c0e0
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
32
33
34
35
36
37
<!DOCTYPE html>
<html lang="en">
<head><meta charset="UTF-8"><title>Settings</title></head>
<body>
  <aside>
    <div>
      <div>
        <div>A</div>
        <div><p>Amal Joe</p><p>Pro Plan</p></div>
      </div>
    </div>
    <nav>
      <a>Profile</a>
      <a>Security</a>
      <a>Notifications</a>
      <a>Billing</a>
      <a>Integrations</a>
    </nav>
  </aside>
  <main>
    <h1>Profile Settings</h1>
    <p>Manage your personal information.</p>
    <div>
      <div>
        <div><label>First Name</label><input value="Amal"></div>
        <div><label>Last Name</label><input value="Joe"></div>
      </div>
      <label>Email</label>
      <input value="amaljoe88@gmail.com">
      <label>Bio</label>
      <textarea rows="3">Building AI tools for developers.</textarea>
      <button>Save Changes</button>
    </div>
  </main>
</body>
</html>