|
|
|
|
@ -20,10 +20,11 @@ name, authentication_status, username = authenticator.login('Logga in', 'main') |
|
|
|
|
if authentication_status: |
|
|
|
|
|
|
|
|
|
# Say hello |
|
|
|
|
st.write(f'**Hej {name}!**') |
|
|
|
|
st.markdown(f':blue[**Hej {name}!**]') |
|
|
|
|
|
|
|
|
|
# Ask for input |
|
|
|
|
user_input = str(st.text_input('Skriv in telefonnummer eller Facebook-ID', )).strip() |
|
|
|
|
help_text = '[Du kan hitta en profils Facebook-ID här](https://lookup-id.com/)' |
|
|
|
|
user_input = str(st.text_input('Skriv in telefonnummer eller Facebook-ID', help=help_text, placeholder='Skriv här...')).strip() |
|
|
|
|
|
|
|
|
|
if user_input != '': |
|
|
|
|
s = [] |
|
|
|
|
|