diff options
author | Justin Shillingford <jgs272@cornell.edu> | 2020-06-25 19:27:49 -0400 |
---|---|---|
committer | Justin Shillingford <jgs272@cornell.edu> | 2020-06-29 14:24:54 -0400 |
commit | 852efbaf2a31250456e1fa87f0abd7192d213d37 (patch) | |
tree | cfa7e6fc9e880e1999e0f460bebaa49e91970948 | |
parent | e1d23c5acd1a55d3929d5f82ac86693909bbee43 (diff) |
Added the logo, text inputs, and buttons
-rw-r--r-- | src/screens/Login.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/screens/Login.tsx b/src/screens/Login.tsx index 3c61fc37..672fd035 100644 --- a/src/screens/Login.tsx +++ b/src/screens/Login.tsx @@ -80,7 +80,7 @@ const Login = ({navigation}: LoginProps) => { */ const handleLogin = () => { if (data.isValidUser && data.isValidPassword) { - Alert.alert(`My favorite Girl Scout Cookies are taggalongs. What are yours ${data.username}?`) + Alert.alert(`My favorite Girl Scout Cookies are taggalongs! What are yours ${data.username}?`) navigation.navigate('Registration') } } |