aboutsummaryrefslogtreecommitdiffstats
path: root/packages/mobile/app/signin.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'packages/mobile/app/signin.tsx')
-rw-r--r--packages/mobile/app/signin.tsx24
1 files changed, 24 insertions, 0 deletions
diff --git a/packages/mobile/app/signin.tsx b/packages/mobile/app/signin.tsx
new file mode 100644
index 00000000..f500e36e
--- /dev/null
+++ b/packages/mobile/app/signin.tsx
@@ -0,0 +1,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>
+ );
+}