blob: cc8dde79d36b17ad64b3943984569c1e707ec10b (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
import { View, Text } from "react-native";
import Logo from "@/components/Logo";
import { Button } from "@/components/ui/Button";
import { Input } from "@/components/ui/Input";
export default function Signin() {
return (
<View className="justify-center h-full flex flex-col gap-2 container">
<View className="items-center">
<Logo />
</View>
<View className="gap-2">
<Text className="font-bold">Email</Text>
<Input className="w-full" placeholder="Email" />
</View>
<View className="gap-2">
<Text className="font-bold">Password</Text>
<Input className="w-full" placeholder="Password" secureTextEntry />
</View>
<Button className="w-full" label="Sign In" />
</View>
);
}
|