From 4a997778e676ec3204ff3471e694b054213512a4 Mon Sep 17 00:00:00 2001 From: niku <nvdpoel01@gmail.com> Date: Tue, 21 Mar 2023 20:11:09 +0100 Subject: [PATCH] Changed placeholders --- components/Login/index.tsx | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/components/Login/index.tsx b/components/Login/index.tsx index f72c4e2..da8242d 100644 --- a/components/Login/index.tsx +++ b/components/Login/index.tsx @@ -41,9 +41,9 @@ export function FormField({ } export default function Login() { - const [domain, setDomain] = useState("https://pve.holowaif.us:8006"); - const [username, setUsername] = useState("root@pam"); - const [password, setPassword] = useState("1Absolut3.lyAd0r3Vtube.rs!"); + const [domain, setDomain] = useState(""); + const [username, setUsername] = useState(""); + const [password, setPassword] = useState(""); const authStore = useAuthStore(); const ticketMut = useTicketMut({ @@ -77,6 +77,7 @@ export default function Login() { <FormField autoComplete="username" label="Username" + placeholder="root@pam" value={username} onChangeText={setUsername} /> @@ -85,6 +86,7 @@ export default function Login() { <FormField autoComplete="password" label="Password" + placeholder="Strong and complicated password" value={password} onChangeText={setPassword} secureTextEntry