diff --git a/frontend/web/src/pages/SignIn.tsx b/frontend/web/src/pages/SignIn.tsx index b862086..d864135 100644 --- a/frontend/web/src/pages/SignIn.tsx +++ b/frontend/web/src/pages/SignIn.tsx @@ -21,7 +21,7 @@ const SignIn: React.FC = () => { useEffect(() => { if (workspaceStore.profile.mode === "demo") { - setEmail("steven@yourselfhosted.com"); + setEmail("slash@yourselfhosted.com"); setPassword("secret"); } }, []); @@ -60,11 +60,11 @@ const SignIn: React.FC = () => { }; return ( -
{t("auth.create-your-account")}
@@ -87,13 +87,13 @@ const SignUp: React.FC = () => { className="w-full py-3" type="email" value={email} - placeholder="steven@slash.com" + placeholder="slash@yourselfhosted.com" onChange={handleEmailInputChanged} />