Update app.py
Browse files
app.py
CHANGED
@@ -127,7 +127,7 @@ def main():
|
|
127 |
|
128 |
# Start screen
|
129 |
if st.session_state.game_state == "start":
|
130 |
-
|
131 |
|
132 |
with st.form("start_form"):
|
133 |
category = st.radio("What are you thinking of?",
|
@@ -170,7 +170,6 @@ def main():
|
|
170 |
st.markdown(f'<div class="final-reveal" style="font-size:3.5rem;color:#6C63FF;">{st.session_state.target.upper()}</div>',
|
171 |
unsafe_allow_html=True)
|
172 |
|
173 |
-
st.image("https://via.placeholder.com/400x200?text=Congratulations", use_column_width=True)
|
174 |
|
175 |
if st.button("Play Again", key="play_again"):
|
176 |
st.session_state.clear()
|
|
|
127 |
|
128 |
# Start screen
|
129 |
if st.session_state.game_state == "start":
|
130 |
+
|
131 |
|
132 |
with st.form("start_form"):
|
133 |
category = st.radio("What are you thinking of?",
|
|
|
170 |
st.markdown(f'<div class="final-reveal" style="font-size:3.5rem;color:#6C63FF;">{st.session_state.target.upper()}</div>',
|
171 |
unsafe_allow_html=True)
|
172 |
|
|
|
173 |
|
174 |
if st.button("Play Again", key="play_again"):
|
175 |
st.session_state.clear()
|