From 561dde51c8b9a41ebcd85f6649b828e827c83729 Mon Sep 17 00:00:00 2001 From: whes1015 Date: Mon, 29 Jan 2024 22:16:18 +0800 Subject: [PATCH] fix: url --- src/change.html | 10 +++++----- src/check.html | 4 ++-- src/forget.html | 10 +++++----- src/login.pug | 8 ++++---- src/register.pug | 8 ++++---- src/user.pug | 2 +- 6 files changed, 21 insertions(+), 21 deletions(-) diff --git a/src/change.html b/src/change.html index b76a680..7f176e3 100644 --- a/src/change.html +++ b/src/change.html @@ -9,7 +9,7 @@ @@ -21,10 +21,10 @@ - + @@ -103,7 +103,7 @@
將在五秒後跳轉回登入畫面
- Discord 伺服器 @@ -171,7 +171,7 @@ submit.disabled = true; - fetch("https://exptech.com.tw/api/v1/et/change", { + fetch("https://api.exptech.com.tw/api/v1/et/change", { method: "POST", headers: { "Content-Type": "application/json" }, body: JSON.stringify({ diff --git a/src/check.html b/src/check.html index db5d88c..42e0c42 100644 --- a/src/check.html +++ b/src/check.html @@ -92,7 +92,7 @@ - Discord 伺服器 + Discord 伺服器 @@ -107,7 +107,7 @@ const urlSearchParams = new URLSearchParams(window.location.search); const params = Object.fromEntries(urlSearchParams.entries()); - fetch(`https://exptech.com.tw/api/v1/et/register?code=${params.code}`, { + fetch(`https://api.exptech.com.tw/api/v1/et/register?code=${params.code}`, { method: "GET", headers: { "Content-Type": "application/json" }, }) diff --git a/src/forget.html b/src/forget.html index 0012a13..4f2578e 100644 --- a/src/forget.html +++ b/src/forget.html @@ -9,7 +9,7 @@ @@ -21,10 +21,10 @@ - + @@ -100,7 +100,7 @@
將在五秒後跳轉回登入畫面
- Discord 伺服器 @@ -124,7 +124,7 @@ submit.disabled = true; - fetch("https://exptech.com.tw/api/v1/et/forget", { + fetch("https://api.exptech.com.tw/api/v1/et/forget", { method: "POST", headers: { "Content-Type": "application/json" }, body: JSON.stringify({ email: values.email }), diff --git a/src/login.pug b/src/login.pug index 6edf259..7266b48 100644 --- a/src/login.pug +++ b/src/login.pug @@ -7,7 +7,7 @@ html(lang="zh-Hant") //- Facebook Meta Tags meta(property="og:site_name", content="探索科技 | ExpTech Studio") - meta(property="og:url", content="https://exptech.com.tw/api/v1/file/exptech/login.html") + meta(property="og:url", content="https://api.exptech.com.tw/file/exptech/login.html") meta(property="og:type", content="website") meta(property="og:title", content="登入") meta(property="og:description", content="登入管理你的 ExpTech 帳號") @@ -15,8 +15,8 @@ html(lang="zh-Hant") //- Twitter Meta Tags meta(name="twitter:card", content="summary") - meta(property="twitter:domain", content="exptech.com.tw") - meta(property="twitter:url", content="https://exptech.com.tw/api/v1/file/exptech/login.html") + meta(property="twitter:domain", content="api.exptech.com.tw") + meta(property="twitter:url", content="https://api.exptech.com.tw/file/exptech/login.html") meta(name="twitter:title", content="登入") meta(name="twitter:description", content="登入管理你的 ExpTech 帳號") meta(name="twitter:image", content="https://cdn.jsdelivr.net/gh/ExpTechTW/API@master/image/Icon/ExpTech.png") @@ -45,6 +45,6 @@ html(lang="zh-Hant") | 如果這不是你的電腦,請使用私密瀏覽視窗登入。 button#register(type="button") 註冊帳號 button#submit(type="submit") 登入 - a.info(href="https://exptech.com.tw/f?v=discord") Discord 伺服器 + a.info(href="https://exptech.com.tw/discord") Discord 伺服器 script(src="./scripts/login.js") \ No newline at end of file diff --git a/src/register.pug b/src/register.pug index 5efc394..d5eb522 100644 --- a/src/register.pug +++ b/src/register.pug @@ -7,7 +7,7 @@ html(lang="zh-Hant") //- Facebook Meta Tags meta(property="og:site_name", content="探索科技 | ExpTech Studio") - meta(property="og:url", content="https://exptech.com.tw/api/v1/file/exptech/register.html") + meta(property="og:url", content="https://api.exptech.com.tw/file/exptech/register.html") meta(property="og:type", content="website") meta(property="og:title", content="註冊") meta(property="og:description", content="註冊 ExpTech 帳號") @@ -15,8 +15,8 @@ html(lang="zh-Hant") //- Twitter Meta Tags meta(name="twitter:card", content="summary") - meta(property="twitter:domain", content="exptech.com.tw") - meta(property="twitter:url", content="https://exptech.com.tw/api/v1/file/exptech/register.html") + meta(property="twitter:domain", content="api.exptech.com.tw") + meta(property="twitter:url", content="https://api.exptech.com.tw/file/exptech/register.html") meta(name="twitter:title", content="註冊") meta(name="twitter:description", content="註冊 ExpTech 帳號") meta(name="twitter:image", content="https://cdn.jsdelivr.net/gh/ExpTechTW/API@master/image/Icon/ExpTech.png") @@ -51,6 +51,6 @@ html(lang="zh-Hant") .success-title.title 發送成功 .success-description 已寄驗證信到你電子郵件地址請查收 .success-description 將在五秒後跳轉回登入畫面 - a.info(href="https://exptech.com.tw/f?v=discord") Discord 伺服器 + a.info(href="https://exptech.com.tw/discord") Discord 伺服器 script(src="./scripts/register.js") \ No newline at end of file diff --git a/src/user.pug b/src/user.pug index af0337b..af1d753 100644 --- a/src/user.pug +++ b/src/user.pug @@ -16,7 +16,7 @@ html(lang="zh-Hant") //- Twitter Meta Tags meta(name="twitter:card", content="summary") - meta(property="twitter:domain", content="exptech.com.tw") + meta(property="twitter:domain", content="api.exptech.com.tw") meta(property="twitter:url", content="https://api.exptech.com.tw/file/exptech/user.html") meta(name="twitter:title", content="用戶資訊面板") meta(name="twitter:description", content="管理你的 ExpTech 帳號")