📦 EqualifyEverything / equalify-v2-dashboard-mocks

📄 18-account.html · 115 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115<!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="#">Pages</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>Integations</h2>
            <section>
                <h3>Adobe PDF Checker</h3>
                <p>Use Adobe PDF accessibility checker service.</p>
                <form>
                        <label for="adobe-key">Adobe Developer API Key:</label>
                        <input type="password" id="adobe-key" name="adobe-key" required>
                        <button>Save Adobe Key</button>
                </form>
            </section>
            <section>
                <h3>Jira - Coming Soon!</h3>
                <p>Save issue tickets directly to Jira.</p>
                <button disabled>Activate Jira</button>
            </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>

        <section>
            <h2>Billing</h2>
            <h3>Current Plan</h3>
            <ul>
                <li>10,000 Scans Per Month (9,997 remaining)</li>
                <li>24 Hour Response Time</li>
                <li>$10,0000/yr</li>
                <li>$20/mo/user (1 active users)</li>
            </ul>
            <h3>Manage Billing</h3>
            Billing is managed through Stripe.
            <button>Visit Stripe</button>
        </section>
           
    </main>

    <footer>
        <section>
            <h2>Need help?</h2>
            <p>Email <a href="#">support@equalify.app</a>.</p>
        </section>
    </footer>

</body>
</html>