📦 EqualifyEverything / equalify-v2-dashboard-mocks

📄 scans.html · 113 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<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>All Scans</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></li>
                <li>
                    <a href="scans.html">Scans</a>
                    <ul>
                        <li><a href="scans.html"  aria-current="page">All Scans</a></li>
                        <li><a href="checks.html">Checks</a></li>
                    </ul>
                </li>

            </ul>        </nav>
    </aside>

    <main>
        <h1>All Scans</h1>
        
        <h2>Bulk Actions</h2>
        <form>
            <fieldset>
                <legend>Sort By</legend>
                <label>
                    <input type="radio" name="sort" checked> Scan Name (A-Z)
                </label>
                <label>
                    <input type="radio" name="sort"> Scan Name (Z-A)
                </label>
                <label>
                    <input type="radio" name="sort">Checks (Most to Least)
                </label>
                <label>
                    <input type="radio" name="sort">Checks (Least to Most)
                </label>
                <label>
                    <input type="radio" name="sort"> Last Run (Newest to Oldest)
                </label>
                <label>
                    <input type="radio" name="sort"> Last Run (Oldest to Newest)
                </label>
            </fieldset>
            <form>
                <label>
                    Search: <input type="text" id="search-input" name="search">
                </label>
                <button type="submit" disabled>Submit</button>
            </form>
        </form>

        <h2>Secondary Scans Navigation</h2>
        <nav aria-label="Secondary">
            <a href="scan_details.html">Add New Scan</a>        </nav>

        <div id="edit-options" style="display: none;">
            <h3>Edit Options</h3>
            <button>Run Scan(s)</button>
            <button>Delete Scan(s)</button>
        </div>

        <section>
            <h2>Scans</h2>
            <table>
                <thead>
                    <tr>
                        <th>
                            <input type="checkbox" aria-label="Select all pages" onclick="toggleAllTableCheckboxes(this)">
                        </th>        
                        <th>Scan Name</th>
                        <th>Checks</th>
                        <th>Last Run</th>
                    </tr>
                </thead>
                <tbody>
                    <tr>
                        <td><input type="checkbox" class="row-checkbox" onchange="toggleEditOptions()"></td>
                        <td><a href="scan_details.html">Sample Scan Name</a></td>
                        <td>232</td>
                        <td>11-12-20 at 12:22:23</td>
                    </tr>
                    <tr>
                        <td><input type="checkbox" class="row-checkbox" onchange="toggleEditOptions()"></td>
                        <td><a href="scan_details.html">Another Scan</a></td>
                        <td>23</td>
                        <td>11-4-20 at 12:20:23</td>
                    </tr>
                </tbody>
            </table>
        </section>

        <nav aria-label="Scans">
            Showing 2 of 2 Scans <button disabled>Load More Scans</button>        </nav>
    </main>

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

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