chore: update margins in login and reg pages

This commit is contained in:
Tristan Yang
2023-06-16 17:09:15 +08:00
parent f2a0812d05
commit caddb0719e
5 changed files with 5 additions and 10 deletions
-2
View File
@@ -1,7 +1,6 @@
{ {
"login": { "login": {
"title": "Login to {{name}}", "title": "Login to {{name}}",
"desc": "Please enter your details.",
"google": "Sign in with Google", "google": "Sign in with Google",
"github": "Sign in with GitHub", "github": "Sign in with GitHub",
"metamask": "Sign in with MetaMask", "metamask": "Sign in with MetaMask",
@@ -11,7 +10,6 @@
}, },
"reg": { "reg": {
"title": "Sign Up to {{name}}", "title": "Sign Up to {{name}}",
"desc": "Please enter your details.",
"google": "Sign Up with Google", "google": "Sign Up with Google",
"github": "Sign Up with GitHub", "github": "Sign Up with GitHub",
"metamask": "Sign Up with MetaMask", "metamask": "Sign Up with MetaMask",
-2
View File
@@ -1,7 +1,6 @@
{ {
"login": { "login": {
"title": "登录{{name}}", "title": "登录{{name}}",
"desc": "请输入用户名密码",
"google": "谷歌登录", "google": "谷歌登录",
"github": "Github登录", "github": "Github登录",
"metamask": "MetaMask登录", "metamask": "MetaMask登录",
@@ -11,7 +10,6 @@
}, },
"reg": { "reg": {
"title": "注册{{name}}", "title": "注册{{name}}",
"desc": "请输入邮箱和密码",
"google": "谷歌注册", "google": "谷歌注册",
"github": "Github注册", "github": "Github注册",
"metamask": "MetaMask注册", "metamask": "MetaMask注册",
+2
View File
@@ -182,6 +182,8 @@ export const authApi = createApi({
try { try {
await queryFulfilled; await queryFulfilled;
dispatch(resetAuthData()); dispatch(resetAuthData());
// 重定向到登录
location.href = "/#/login";
} catch { } catch {
console.log("logout error"); console.log("logout error");
} }
+2 -4
View File
@@ -134,10 +134,9 @@ export default function LoginPage() {
alt="logo" alt="logo"
className="w-14 h-14 mb-3 md:mb-7 rounded-full" className="w-14 h-14 mb-3 md:mb-7 rounded-full"
/> />
<h2 className="font-semibold text-2xl text-gray-800 dark:text-white md:mb-2"> <h2 className="font-semibold text-2xl text-gray-800 dark:text-white">
{t("login.title", { name: serverName })} {t("login.title", { name: serverName })}
</h2> </h2>
<span className="text-gray-400 dark:text-gray-100">{t("login.desc")}</span>
</div> </div>
<form className="flex flex-col gap-5 w-80 md:min-w-[360px] " onSubmit={handleLogin}> <form className="flex flex-col gap-5 w-80 md:min-w-[360px] " onSubmit={handleLogin}>
<Input <Input
@@ -165,9 +164,8 @@ export default function LoginPage() {
</Button> </Button>
</form> </form>
{hasDivider && <Divider content="OR" />} {hasDivider && <Divider content="OR" />}
<div className="flex flex-col gap-4"> <div className="flex flex-col gap-3">
{enableMagicLink && <MagicLinkLogin />} {enableMagicLink && <MagicLinkLogin />}
<SocialLoginButtons /> <SocialLoginButtons />
</div> </div>
{whoCanSignUp === "EveryOne" && <SignUpLink />} {whoCanSignUp === "EveryOne" && <SignUpLink />}
+1 -2
View File
@@ -147,10 +147,9 @@ export default function Register() {
alt="logo" alt="logo"
className="w-14 h-14 md:mb-7 rounded-full" className="w-14 h-14 md:mb-7 rounded-full"
/> />
<h2 className="font-semibold text-2xl text-gray-800 dark:text-white md:mb-2"> <h2 className="font-semibold text-2xl text-gray-800 dark:text-white">
{t("reg.title", { name: serverName })} {t("reg.title", { name: serverName })}
</h2> </h2>
<span className="hidden md:block text-gray-400 dark:text-gray-100">{t("reg.desc")}</span>
</div> </div>
<form <form