📦 EqualifyEverything / equalify-v2-dashboard-mocks

📄 6-node_details.html · 119 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
116
117
118
119<!-- 
Note page content.

Demo Step 6: 
Click issue link "Link with no accessible text" to view issue details.  
-->

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8" />
    <meta name="viewport" content="width=device-width, initial-scale=1.0"/> 
    <title>Node 4234 - Node Details</title>
</head>
<body>
    <header>
        <nav aria-label="Main">
            <ul>
                <li><a href="#">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>Node 4234</h1>

        <nav aria-label="Secondary">
            <button>Watch Node</button>
            <button>AI Analyze</button>        </nav>

        <section>
            <h2>Content</h2>
            <code>&lt;a href="https://example.com"&gt;&lt;img src="example-image.jpg"&gt;&lt;/a&gt;<br></code>
        </section>

        <section>
            <h2>Related Scans</h2>
            <div id="edit-options" style="display: none;">
                <h3>Options</h3>
                <button>Ignore from Scan</button>
                <button>Unignore from Scan</button>
                <button>AI Analyze</button>
            </div>
    
            <table>
                <tr>
                    <th>
                        <input type="checkbox" aria-label="Select all nodes" onclick="toggleAllTableCheckboxes(this)">
                    </th>
                    <th>Scan Name</th>
                    <th>Screenshot</th>
                    <th>URL</th>
                    <th>Issues</th>
                    <th>Status</th>
                </tr>
                <tr>
                    <td><input type="checkbox" class="row-checkbox" onchange="toggleEditOptions()"></td>
                    <td><a href="#">Equalify Home Editorial</a></td>
                    <td><img src="image.jpg" alt="Screenshot of Node 4234"></td>
                    <td>https://equalify.app</td>
                    <td><a href="7-issue_details.html">Link with no accessible text</a></td>
                    <td>Ignored</td>
                </tr>
            </table>
        </section>

        <section>
            <h2>Related Logs</h2>
            <table>
                <thead>
                    <tr>
                        <th>ID</th>
                        <th>Message</th>
                        <th>Trigger</th>
                    </tr>
                </thead>
                <tbody>
                    <tr>
                        <td><a href="#">25</a></td>
                        <td>Node 4234 ignored.</td>
                        <td>User: Blake</td>
                    </tr>
                    <tr>
                        <td><a href="#">24</a></td>
                        <td>Scan successful. 1 node equalified and 2 new nodes. 2 new issues.</td>
                        <td>User: Blake</td>
                    </tr>
                    <tr>
                        <td><a href="#">23</a></td>
                        <td>Check failed on Node 4234.</td>
                        <td><a href="#">Editora11y Link Accessibility</a></td>
                    </tr>
                </tbody>
            </table>

            <nav aria-label="Logs Table">
                Showing 3 of 3 Logs <button disabled>Load More Logs</button>
            </nav>
        </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>