File size: 2,101 Bytes
5b5c9f7
 
 
 
 
 
e0f08c6
 
 
ba1dfbc
e16e5fe
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
# app.py
import os
os.environ['TF_ENABLE_ONEDNN_OPTS'] = '0'
os.environ['KMP_DUPLICATE_LIB_OK']='TRUE'

import streamlit as st
import spacy
from spacy import displacy
import re

from modules.auth import register_user, authenticate_user
from modules.morpho_analysis import get_repeated_words_colors, highlight_repeated_words, POS_COLORS, POS_TRANSLATIONS
from modules.syntax_analysis import visualize_syntax

# ... (resto de tus importaciones y configuraciones)

def login_page():
    st.title("Iniciar Sesi贸n")
    username = st.text_input("Usuario")
    password = st.text_input("Contrase帽a", type='password')
    if st.button("Iniciar Sesi贸n"):
        if authenticate_user(username, password):
            st.success(f"Bienvenido, {username}!")
            st.session_state.logged_in = True
            st.session_state.username = username
            st.experimental_rerun()
        else:
            st.error("Usuario o contrase帽a incorrectos")

def register_page():
    st.title("Registrarse")
    new_username = st.text_input("Nuevo Usuario")
    new_password = st.text_input("Nueva Contrase帽a", type='password')
    role = st.selectbox("Rol", ["Estudiante", "Profesor"])
    if st.button("Registrarse"):
        if register_user(new_username, new_password, role):
            st.success("Registro exitoso. Por favor, inicia sesi贸n.")
        else:
            st.error("El usuario ya existe")

def main_app():
    # Aqu铆 va tu c贸digo principal de la aplicaci贸n
    # ... (el resto de tu c贸digo actual en app.py)

def main():
    if 'logged_in' not in st.session_state:
        st.session_state.logged_in = False

    if not st.session_state.logged_in:
        menu = ["Iniciar Sesi贸n", "Registrarse"]
        choice = st.sidebar.selectbox("Menu", menu)
        if choice == "Iniciar Sesi贸n":
            login_page()
        elif choice == "Registrarse":
            register_page()
    else:
        if st.sidebar.button("Cerrar Sesi贸n"):
            st.session_state.logged_in = False
            st.experimental_rerun()
        main_app()

if __name__ == "__main__":
    main()