Correction placeholder
This commit is contained in:
parent
00911bbea4
commit
f2f4621899
1 changed files with 1 additions and 1 deletions
2
main.py
2
main.py
|
@ -20,7 +20,7 @@ def main():
|
|||
with open("ressources/header.md", "r") as f:
|
||||
st.markdown(f.read(), unsafe_allow_html=False)
|
||||
|
||||
text = st.text_area("Entre le texte à corriger", value="Écris ton texte ici", height=200)
|
||||
text = st.text_area("Entre le texte à corriger", placeholder="Écris ton texte ici", height=200)
|
||||
if st.button("Corriger"):
|
||||
corrected_text = correct_text(text)
|
||||
st.text_area("Texte corrigé:", value=corrected_text, height=200)
|
||||
|
|
Loading…
Reference in a new issue