AIdeaText commited on
Commit
908521c
·
verified ·
1 Parent(s): bedce85

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +13 -1
app.py CHANGED
@@ -1,7 +1,19 @@
1
  import gradio as gr
2
  import os
3
  import logging
4
- from modules.auth.auth import create_auth_interface
 
 
 
 
 
 
 
 
 
 
 
 
5
  from modules.database.database_init import initialize_database_connections
6
  import spaces
7
  import torch
 
1
  import gradio as gr
2
  import os
3
  import logging
4
+
5
+ from modules.auth.auth import (
6
+ authenticate_user,
7
+ authenticate_admin,
8
+ authenticate_student,
9
+ register_student,
10
+ update_student_info,
11
+ delete_student,
12
+ logout,
13
+ hash_password,
14
+ verify_password
15
+ )
16
+
17
  from modules.database.database_init import initialize_database_connections
18
  import spaces
19
  import torch