From b9fbcfb672f8e95756018c66dfced92ce97099fd Mon Sep 17 00:00:00 2001 From: Lasse Server Date: Sat, 8 Jul 2023 16:32:45 +0200 Subject: [PATCH] Colorizing things --- app.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/app.py b/app.py index 1adc0e3..df779ba 100644 --- a/app.py +++ b/app.py @@ -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 = []