From 46ac5ec3ffeca432b5ce7b48d3c0aeee241bc53d Mon Sep 17 00:00:00 2001 From: MathMan05 Date: Sun, 4 May 2025 20:37:32 -0500 Subject: [PATCH] email field correction --- src/webpage/login.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/webpage/login.ts b/src/webpage/login.ts index ed2a8bc..9f67183 100644 --- a/src/webpage/login.ts +++ b/src/webpage/login.ts @@ -91,7 +91,7 @@ export async function makeLogin(trasparentBg = false, instance = "") { picker.giveButton(button); button?.classList.add("createAccount"); - const email = form.addTextInput(I18n.htmlPages.userField(), "login"); + const email = form.addTextInput(I18n.htmlPages.emailField(), "login"); form.addTextInput(I18n.htmlPages.pwField(), "password", {password: true}); form.addCaptcha(); const a = document.createElement("a");