Spaces:
Running
Running
Jon Solow
commited on
Commit
·
dd56812
1
Parent(s):
7cf6c15
Fix line length
Browse files
src/pages/11_League_Simulation.py
CHANGED
|
@@ -1,4 +1,3 @@
|
|
| 1 |
-
import datetime
|
| 2 |
import streamlit as st
|
| 3 |
|
| 4 |
from config import DEFAULT_ICON
|
|
@@ -13,7 +12,9 @@ def get_page():
|
|
| 13 |
st.title(page_title)
|
| 14 |
|
| 15 |
if not is_token_in_session():
|
| 16 |
-
st.write(
|
|
|
|
|
|
|
| 17 |
|
| 18 |
else:
|
| 19 |
st.write("Logged in. Feature to go here")
|
|
|
|
|
|
|
| 1 |
import streamlit as st
|
| 2 |
|
| 3 |
from config import DEFAULT_ICON
|
|
|
|
| 12 |
st.title(page_title)
|
| 13 |
|
| 14 |
if not is_token_in_session():
|
| 15 |
+
st.write(
|
| 16 |
+
"You must authorize the application to access your account in order to use this feature."
|
| 17 |
+
" Please click Login button above.")
|
| 18 |
|
| 19 |
else:
|
| 20 |
st.write("Logged in. Feature to go here")
|