blob: f500e36eb00aad6338bfaa280387a44d9c1b1276 (
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="container justify-center h-full flex flex-col gap-2">
<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>
);
}
|