Colorizing things

main
Lasse Server 3 years ago
parent 126a35925c
commit b9fbcfb672
  1. 5
      app.py

@ -20,10 +20,11 @@ name, authentication_status, username = authenticator.login('Logga in', 'main')
if authentication_status: if authentication_status:
# Say hello # Say hello
st.write(f'**Hej {name}!**') st.markdown(f':blue[**Hej {name}!**]')
# Ask for input # 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 != '': if user_input != '':
s = [] s = []

Loading…
Cancel
Save