From 2c77ee8cfa8e0808d24ed386953a5ce17c639833 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=93=B8=E6=B8=8A=20=28ICE-GL-ZY001=29?= Date: Tue, 12 May 2026 13:05:30 +0000 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=A7=20=E4=BF=AE=E5=A4=8D=E5=94=A4?= =?UTF-8?q?=E9=86=92=E9=97=A8API=E8=B7=AF=E5=BE=84+=E9=A6=96=E9=A1=B5?= =?UTF-8?q?=E9=86=92=E7=9B=AE=E5=85=A5=E5=8F=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 2 ++ server/wake-gate/public/index.html | 4 ++-- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 19e1195..9da2f02 100644 --- a/README.md +++ b/README.md @@ -8,6 +8,8 @@ [![主权](https://img.shields.io/badge/主权-TCS--0002∞_冰朔-163e6b?style=flat-square)]() [![版权](https://img.shields.io/badge/版权-国作登字--2026--A--00037559-f5e6c8?style=flat-square)]() +### 🔐 [唤醒铸渊 — 点击发送验证码到QQ邮箱](https://guanghulab.com/wake/) + --- diff --git a/server/wake-gate/public/index.html b/server/wake-gate/public/index.html index 17fe6b8..835a340 100644 --- a/server/wake-gate/public/index.html +++ b/server/wake-gate/public/index.html @@ -78,7 +78,7 @@ function sendCode() { const btn = document.getElementById('sendBtn'); btn.disabled = true; - fetch('/api/send-code', { method: 'POST' }) + fetch('/wake/api/send-code', { method: 'POST' }) .then(r => r.json()) .then(data => { if (data.success) { @@ -116,7 +116,7 @@ function verifyCode() { const btn = document.getElementById('verifyBtn'); btn.disabled = true; - fetch('/api/verify', { + fetch('/wake/api/verify', { method: 'POST', headers: { 'Content-Type': 'application/json' }, body: JSON.stringify({ code })