From d77d7c440333ded46eeb8d28e22ec5517f3b15b8 Mon Sep 17 00:00:00 2001 From: piotrruss Date: Wed, 18 May 2022 23:02:58 +0100 Subject: small fixes --- components/Login.jsx | 90 ++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 90 insertions(+) create mode 100644 components/Login.jsx (limited to 'components/Login.jsx') diff --git a/components/Login.jsx b/components/Login.jsx new file mode 100644 index 0000000..4c6ffb0 --- /dev/null +++ b/components/Login.jsx @@ -0,0 +1,90 @@ +import { StyleSheet, Text, TextInput, Pressable, View } from 'react-native'; +import { useState } from 'react'; + +const Login = ({ login }) => { + const [email, setEmail] = useState(''); + const [pass, setPass] = useState(''); + const disabled = (e, p) => !/^[^\s@]+@[^\s@]+\.[^\s@]+$/.test(e) || p.length < 6; + + return ( + + Login to Notes + Account can be created through apps.pruss.it website + setEmail(e.nativeEvent.text.toLowerCase())} + /> + setPass(e.nativeEvent.text)} + /> + login(email, pass)} + style={{...styles.button, opacity: disabled(email, pass) ? .3 : 1}} + disabled={disabled(email, pass)} + > + Login + + + ); +}; + +const styles = StyleSheet.create({ + container: { + flex: 1, + alignItems: 'center', + justifyContent: 'center', + height: '100%' + }, + title: { + color: 'white', + fontSize: 26, + marginBottom: 40, + }, + text: { + color: 'white', + marginBottom: 50, + }, + input: { + height: 50, + width: 280, + padding: 10, + marginBottom: 20, + color: 'white', + backgroundColor: '#444', + borderColor: '#aaa', + borderWidth: 1, + borderStyle: 'solid', + borderRadius: 10, + }, + button: { + width: 100, + height: 40, + backgroundColor: '#666', + borderRadius: 5, + marginTop: 40, + alignItems: 'center', + justifyContent: 'center', + }, + buttonText: { + color: 'white', + } +}); + +export default Login; -- cgit v1.2.3