📦 EqualifyEverything / equalify-v2-dashboard-mocks

📄 node_details.html · 110 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<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8" />
    <meta name="viewport" content="width=device-width, initial-scale=1.0"/> 
    <title>Single Node Details</title>
</head>
<body>
    <aside>
        <button id="toggle-navigation" aria-expanded="false">Show Navigation</button>
        <nav id="main-navigation" hidden>
            <ul>
                <li><a href="dashboard.html">Dashboard</a></li>
                <li><a href="issues.html">Issues</a></li>
                <li>
                    <a href="urls.html">URLs</a>
                    <ul>
                        <li><a href="urls.html">All URLs</a></li>
                        <li><a href="nodes.html">Nodes</a></li>
                        <li><a href="properties.html">Properties</a></li>
                    </ul>
                </li>
                <li><a href="scans.html">Scans</a></li>
            </ul>        </nav>
    </aside>

    <main>
        <h1>Sample Named Node <sub>Node 3293</sub></h1>

        <nav aria-label="Secondary">
            <label for="node-name">Node Name:</label>
            <input id="node-name" value="Sample Named Node">
            <p>Related Page: <a href="url_details.html">Page Name</a></p>
            <button>Mark Updates as Read</button>
            <button>Watch on Dashboard</button>
            <button>AI Analyze</button>
            <button>Ignore Node</button>
            <label for="status-select">Status:</label>
            <select id="status-select" aria-describedby="edit-disabled-reason" disabled>
                <option value="active">Active</option>
                <option value="equalified">Equalified</option>
            </select>
            <button disabled aria-describedby="edit-disabled-reason">Delete Node</button>
            <span id="edit-disabled-reason">
                You cannot edit this node because it was created by a scan.
            </span>        </nav>

        <section>
            <h2>Content</h2>
            <pre>[Sample Item Code]</pre>
        </section>

        <section>
            <h2>Related Issues</h2>
            <ul>
                <li><a href="issue_details.html">Sample Issue</a></li>
                <li><a href="issue_details.html">Another Sample Issue</a></li>
            </ul>
        </section>

        <section>
            <h2>Node Status Changes</h2>
            <table>
                <thead>
                    <tr>
                        <th scope="col">Time</th>
                        <th scope="col">Original Status</th>
                        <th scope="col">Changed Status</th>
                        <th scope="col">Related Scan</th>
                        <th scope="col">Related Check</th>
                        <th scope="col">Screenshot</th>
                        <th scope="col">Log Item</th>
                        <th scope="col">Unread?</th>
                    </tr>
                </thead>
                <tbody>
                    <tr>
                        <td>12-02-24 at 2:30 PM</td>
                        <td>Active</td>
                        <td>Equalified</td>
                        <td><a href="scan_details.html">Sample Scan</a></td>
                        <td><a href="check_details.html">Sample Check</a></td>
                        <td><a href="#">Screenshot from 12-02-24</a></td>
                        <td><a href="log_details.html">123</a></td>
                        <td>TRUE</td>
                    </tr>
                    <tr>
                        <td>12-01-24 at 1:30 PM</td>
                        <td>None</td>
                        <td>Active</td>
                        <td><a href="scan_details.html">Sample Scan</a></td>
                        <td><a href="check_details.html">Sample Check</a></td>
                        <td><a href="#">Screenshot from 12-02-24</a></td>
                        <td><a href="log_details.html">122</a></td>
                        <td>FALSE</td>
                    </tr>
                </tbody>
            </table>
        </section>
    </main>

    <footer>
        <nav aria-label="Footer">
            <a href="account.html">Account</a>
        </nav>
    </footer>

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