Spaces:
Sleeping
Sleeping
app.py
CHANGED
|
@@ -34,6 +34,11 @@ st.markdown("""
|
|
| 34 |
font-size:20px !important;
|
| 35 |
font-weight: bold;
|
| 36 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 37 |
.stAlert > div {
|
| 38 |
padding-top: 15px;
|
| 39 |
padding-bottom: 15px;
|
|
@@ -118,7 +123,7 @@ def main():
|
|
| 118 |
else:
|
| 119 |
credentials = Credentials.from_authorized_user_info(json.loads(st.session_state['credentials']))
|
| 120 |
user_info = get_user_info(credentials)
|
| 121 |
-
st.
|
| 122 |
|
| 123 |
# Load the data
|
| 124 |
df = load_data()
|
|
|
|
| 34 |
font-size:20px !important;
|
| 35 |
font-weight: bold;
|
| 36 |
}
|
| 37 |
+
.welcome-message {
|
| 38 |
+
font-size:24px !important;
|
| 39 |
+
font-weight: bold;
|
| 40 |
+
margin-bottom: 20px;
|
| 41 |
+
}
|
| 42 |
.stAlert > div {
|
| 43 |
padding-top: 15px;
|
| 44 |
padding-bottom: 15px;
|
|
|
|
| 123 |
else:
|
| 124 |
credentials = Credentials.from_authorized_user_info(json.loads(st.session_state['credentials']))
|
| 125 |
user_info = get_user_info(credentials)
|
| 126 |
+
st.markdown(f"<p class='welcome-message'>Welcome, {user_info['name']}!</p>", unsafe_allow_html=True)
|
| 127 |
|
| 128 |
# Load the data
|
| 129 |
df = load_data()
|