Changed placeholders

This commit is contained in:
niku 2023-03-21 20:11:09 +01:00
parent 42c2d069ef
commit 4a997778e6

View File

@ -41,9 +41,9 @@ export function FormField({
} }
export default function Login() { export default function Login() {
const [domain, setDomain] = useState("https://pve.holowaif.us:8006"); const [domain, setDomain] = useState("");
const [username, setUsername] = useState("root@pam"); const [username, setUsername] = useState("");
const [password, setPassword] = useState("1Absolut3.lyAd0r3Vtube.rs!"); const [password, setPassword] = useState("");
const authStore = useAuthStore(); const authStore = useAuthStore();
const ticketMut = useTicketMut({ const ticketMut = useTicketMut({
@ -77,6 +77,7 @@ export default function Login() {
<FormField <FormField
autoComplete="username" autoComplete="username"
label="Username" label="Username"
placeholder="root@pam"
value={username} value={username}
onChangeText={setUsername} onChangeText={setUsername}
/> />
@ -85,6 +86,7 @@ export default function Login() {
<FormField <FormField
autoComplete="password" autoComplete="password"
label="Password" label="Password"
placeholder="Strong and complicated password"
value={password} value={password}
onChangeText={setPassword} onChangeText={setPassword}
secureTextEntry secureTextEntry