summaryrefslogtreecommitdiffstats
path: root/_includes/cig_password_xgspon.html
blob: 5e49d231a237e25fb186373dea5fc0016163de07 (plain) (blame)
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
<div>
    <form id="cig-password" novalidate>
        <div class="form-floating mb-3">
            <input type="text" class="form-control" placeholder="Serial Number" name="serial" id="serial" required pattern="[0-9A-Za-z]{4}[0-9A-Fa-f]{8}">
            <label for="serial" class="form-label">GPON S/N in format GPONabc12345</label>
            <div class="invalid-feedback">
                Please provide a valid GPON S/N.
            </div>
        </div>
        {% if include.password_len_modify == true %}
        <div class="form-floating mb-3">
            <input readonly type="text" class="form-control" placeholder="Password length" name="password_len" id="password_len" value="{{include.password_len}}">
            <label for="password_len" class="form-label">Password length</label>
        </div>
        {% else %}
        <input readonly type="hidden" name="password_len" id="password_len" value="{{include.password_len}}">
        {% endif %}
        <div class="mb-3">
            <input type="submit" class="btn btn-primary" value="Generate!" id="submit">
            <label for="submit" class="form-label">Warning: this script is hosted on a third-party server.</label>
        </div>
        <div class="form-floating mb-3">
            <input readonly type="text" class="form-control" placeholder="Serial Number" name="username" id="username">
            <label for="username" class="form-label">Username</label>
        </div>
        <div class="form-floating mb-3">
            <input readonly class="form-control" type="text" id="result" placeholder="Result">
            <label for="result" class="form-label">Password</label>
        </div>
    </form>
    <script>
        var cigPassword = document.getElementById('cig-password');
        cigPassword.addEventListener('submit', (event) => {
            event.preventDefault();
            if (!cigPassword.checkValidity()) {
                event.preventDefault();
            } else {
                const data = new URLSearchParams(new FormData(cigPassword));
                var url = new URL("https://cigpassword.hack-gpon.org/xgspon/");
                url.search = data.toString();
                fetch(url, {mode: 'cors'}).then(response => response.json()).then(json => {
                    document.getElementById('result').value = json.password;
                    document.getElementById('username').value = json.username;
                }).catch((error) => {
                    document.getElementById('result').value = "Error!"
                });
            }
            [...cigPassword.elements].map(e => e.parentNode).forEach(e => e.classList.toggle('was-validated', true));
        });
    </script>
</div>