📦 EqualifyEverything / equalify-v2-dashboard-mocks

📄 18-account.html · 73 lines
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Account - Equalify</title>
</head>
<body>
    <header>
        <nav aria-label="Main">
            <ul>
                <li><a href="#">Audits</a></li>
                <li><a href="#">Logs</a></li>
                <li><a href="#" aria-current="page">Account</a></li>
            </ul>
        </nav>
    </header>

    <main>
        <h1>Account</h1>
        
        <article>
            <h2>User Settings</h2>
            <button>Logout</button>
            <section>
                <h3>Account Settings</h3>
                <form>
                        <label for="first-name">First Name:</label>
                        <input type="text" id="first-name" name="first-name" value="Lucy" required>
                        
                        <label for="last-name">Last Name:</label>
                        <input type="text" id="last-name" name="last-name" value="Greco" required>
                        
                        <label for="email">Email Address:</label><br>
                        <input type="email" id="email" name="email" disabled value="lgreco@berkeley.edu">
                        
                        <label for="password">Password:</label>
                        <input type="password" id="password" name="password" required>
                        
                        <label for="confirm-password">Confirm Password:</label>
                        <input type="password" id="confirm-password" name="confirm-password" required>
                        <button>Update Account</button>
                </form>
            </section>
            <section>
                <h3>Danger Zone</h3>
                <form>
                    <button>Delete Account</button>
                </form>
            </section>
        </article>

        <article>
            <h2>Team</h2>
            <section>
                <h3>Team Members</h3>
                <ul>
                    <li>Lucy Greco - Owner</li>
                </ul>
            </section>
            <section>
                <h3>Invite New Members</h3>
                <form>
                    <label for="invite-email">Invitee Email Address:</label>
                    <input type="email" id="invite-email" name="invite-email" required>
                    <button type="button" onclick="window.location.href='19-account-saved.html';">Send Invite</button>
                </form>
            </section>
        </article>
    </main>
</body>
</html>