Projects STRLCPY wrongsecrets Commits e3a9ca85
🤬
Revision indexing in progress... (symbol navigation in revisions will be accurate after indexed)
  • ■ ■ ■ ■ ■ ■
    src/main/resources/static/css/dark.css
    skipped 82 lines
    83 83   border-color: var(--bs-indigo);
    84 84  }
    85 85   
     86 +.dark-mode input {
     87 + background-color: var(--bs-gray-600);
     88 + color: var(--bs-body-color);
     89 +}
     90 + 
     91 +.dark-mode select {
     92 + background-color: var(--bs-gray-600);
     93 + color: var(--bs-body-color);
     94 +}
     95 + 
  • ■ ■ ■ ■ ■
    src/main/resources/templates/index.html
    skipped 48 lines
    49 49   ordering: true,
    50 50   });
    51 51   $(document).ready(function () {
    52  - $('#challenge_overview').DataTable();
     52 + $('#challenge_overview').DataTable({
     53 + lengthMenu: [ [20, 30, 50, -1], [20, 30, 50, "All"] ]
     54 + });
    53 55   });
    54 56  </script>
    55 57   
    skipped 3 lines
  • ■ ■ ■ ■ ■
    src/main/resources/templates/welcome.html
    skipped 37 lines
    38 38   th:text="${challenge.name}"
    39 39   th:remove="tag"></span></a></td>
    40 40   <td th:text="${challenge.tech}"></td>
    41  - <th:block th:if="${challenge.requiredEnv} == 'DOCKER'">
    42  - <td class="d-sm-none">Docker</td>
    43  - </th:block>
    44  - <th:block th:if="${challenge.requiredEnv} == 'K8S'">
    45  - <td class="d-sm-none">K8s or Minikube</td>
    46  - </th:block>
    47  - <th:block th:if="${challenge.requiredEnv} == 'VAULT'">
    48  - <td class="d-sm-none">K8s or Minikube with Vault</td>
    49  - </th:block>
    50  - <th:block
    51  - th:if="${challenge.requiredEnv} == 'AWS' or ${challenge.requiredEnv} == 'GCP' or ${challenge.requiredEnv} == 'AZURE'">
    52  - <td class="d-sm-none">AWS, GCP, Azure</td>
    53  - </th:block>
     41 + <td td:if="${{challenge.requiredEnv == 'USEDFORDEDUPLICATIONDONOTREMOVE'}}" class="d-sm-none"></td>
    54 42   <td class="d-none d-md-table-cell">
    55 43   <th:span th:each="i: ${#numbers.sequence(1, challenge.difficulty)}"><span>★ </span></th:span>
    56 44   <th:span th:if="${challenge.difficulty<5}"
    skipped 124 lines
Please wait...
Page is in error, reload to recover