📦 EqualifyEverything / equalify-v2-dashboard-mocks

📄 8-check_editor.html · 65 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<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Untitled Check - Check Editor - 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="#">Account</a></li>
            </ul>
        </nav>
    </header>

    <main>
        <h1>Untitled Check</h1>
        <section>
            <h2>Edit Check</h2>
            <form>
                <label for="check_name">Check Name:</label>
                <input id="check_name" type="text" required>
                <label for="ruleset">Ruleset:</label>
                <select id="ruleset" disabled>
                    <option>Editora11y</option>
                    <option>axe-core</option>
                    <option selected>Custom Checks</option>
                </select>
                <label for="check_category">Category:</label>
                <select id="check_category" required>
                    <option>ARIA-related</option>
                    <option>Page Content</option>
                    <option>Meta Checks</option>
                    <option>Headings</option>
                    <option>Text Alternatives</option>
                    <option>Meaningful Links</option>
                    <option>General Quality Assurance</option>
                </select>
                <label for="check_code">Check Code:</label>
                <textarea id="check_code" required></textarea>
                <button type="button" onclick="window.location.href='9-check_editor-saved.html';">Save Check</button>
            </form>
            <button disabled>Delete Check</button>
        </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>


</body>
</html>