authentication component

This commit is contained in:
2025-06-23 12:11:36 +08:00
parent ba2dc1211f
commit 8d9f52b85c
15 changed files with 261 additions and 197 deletions

View File

@@ -8,6 +8,7 @@ export const MainColor = {
orange: "#FF7043",
green: "#4CAF4F",
login: "#EDEBEBFF",
disabled: "#606360",
};
export const AccentColor = {

View File

@@ -0,0 +1,36 @@
import { StyleSheet } from "react-native";
import { MainColor } from "./color-palet";
export const globalStyles = StyleSheet.create({
container: {
flex: 1,
paddingInline: 30,
paddingBlock: 20,
},
imageBackground: {
height: "100%",
width: "100%",
},
// AUTHENTICATION
authContainer: {
justifyContent: "center",
alignItems: "center",
marginBottom: 50,
},
authTitle: {
fontSize: 27,
color: MainColor.yellow,
fontWeight: "bold",
},
authSubTitle: {
fontSize: 22,
color: MainColor.yellow,
fontWeight: "bold",
},
textLabel: {
fontSize: 16,
color: MainColor.white,
fontWeight: "normal",
},
});

View File

@@ -1,29 +0,0 @@
import { StyleSheet } from "react-native";
export const styles = StyleSheet.create({
container: {
flex: 1,
paddingInline: 30,
paddingBlock: 20,
},
imageBackground: {
height: "100%",
width: "100%",
// justifyContent: "center",
// alignItems: "center",
},
input: {
backgroundColor: "#fff",
borderWidth: 1,
borderColor: "#ccc",
padding: 10,
marginBottom: 10,
borderRadius: 5,
width: "80%",
},
image: {
width: 30,
height: 30,
},
});