📦 EqualifyEverything / equalify-v2-dashboard-mocks

📄 11-dashboard.html · 102 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<!-- 
Note page content.

New recent scans. 

New watched content.

Everything SiteImprove has.
-->

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Dashboard - Equalify</title>
</head>
<body>
    <header>
        <nav aria-label="Main">
            <ul>
                <li><a href="#" aria-current="page">Dashboard</a></li>
                <li><a href="#">Pages</a></li>
                <li><a href="#">Logs</a></li>
                <li><a href="#">Account</a></li>
            </ul>
        </nav>
    </header>

    <main>
        <h1>Dashboard</h1>

        <section>
            <h2>Quick Scan</h2>
            <form action="2-scan_results-new.html" method="get">
                <label for="scan_page">Page URL(s):</label>
                <input id="scan_page" type="text">
                <fieldset>
                    <legend>Select Scans</legend>
                    <ul>
                        <li>
                            <label>
                                <input type="checkbox"> axe-core
                            </label> 
                        </li>
                        <li>
                            <label>
                                <input type="checkbox"> Editora11y
                            </label> 
                        </li>
                        <li>
                            <a href="#">New Scan</a>
                        </li>
                    </ul>   
                </fieldset>
                <button>Scan</button>
            </form>
        </section>
        <section>
            <h2>Saved Scans</h2>
            <ul>
                <li>
                    <a href="#">Equalify Home Editorial</a>
                    <ul>
                        <li>3 Active Nodes</li>
                        <li>1 Equalified Nodes</li>
                        <li>1 Ignored Nodes</li>
                        <li>Updated: 12-2-24</li>
                    </ul>
                </li>
            </ul>
        </section>
        <section>
            <h2>Issues Watched</h2>
            <ul>
                <li>
                    <a href="#">Link with no accessible text</a>
                    <ul>
                        <li>0 Active Nodes</li>
                        <li>0 Equalified Nodes</li>
                        <li>1 Ignored Nodes</li>
                    </ul>
                </li>
            </ul>
        </section>
    </main>

    <footer>
        <section>
            <h2>Scan Quota</h2>
            <p>0 free scans remaining. <a href="#">Upgrade</a>.</p>
        </section>
        <section>
            <h2>Need help?</h2>
            <p>Email <a href="#">support@equalify.app</a>.</p>
        </section>
    </footer>


    <script src="script.js"></script>
</body>
</html>