docker 完成

This commit is contained in:
jeremygan2021
2026-01-06 17:02:06 +08:00
parent 0fcdfd36e2
commit 9ed51276a5
4 changed files with 29 additions and 3 deletions

View File

@@ -297,13 +297,16 @@
</div>
<script>
// Use secret from backend
const ACCESS_SECRET = "{{ secret }}";
// Password Check Logic
function checkSecret() {
const input = document.getElementById('secret-input');
const error = document.getElementById('secret-error');
const overlay = document.getElementById('password-overlay');
if (input.value === '123quant-speed') {
if (input.value === ACCESS_SECRET) {
overlay.style.opacity = '0';
setTimeout(() => {
overlay.style.display = 'none';