Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -1,6 +1,6 @@
|
|
| 1 |
from fastapi import FastAPI
|
| 2 |
from fastapi.middleware.cors import CORSMiddleware
|
| 3 |
-
from api
|
| 4 |
import gradio as gr
|
| 5 |
import requests
|
| 6 |
|
|
@@ -107,7 +107,7 @@ with gr.Blocks(css="""
|
|
| 107 |
}
|
| 108 |
""") as admin_ui:
|
| 109 |
gr.Markdown("<div class='title-text'>👨⚕️ Doctor Account Creator</div>")
|
| 110 |
-
gr.Markdown("<div class='description-text'>Admins can register new doctors using this secure panel. Generated at 05:
|
| 111 |
|
| 112 |
with gr.Column():
|
| 113 |
full_name = gr.Textbox(label="Full Name", placeholder="e.g. Dr. Sarah Hopkins")
|
|
|
|
| 1 |
from fastapi import FastAPI
|
| 2 |
from fastapi.middleware.cors import CORSMiddleware
|
| 3 |
+
from api import api_router
|
| 4 |
import gradio as gr
|
| 5 |
import requests
|
| 6 |
|
|
|
|
| 107 |
}
|
| 108 |
""") as admin_ui:
|
| 109 |
gr.Markdown("<div class='title-text'>👨⚕️ Doctor Account Creator</div>")
|
| 110 |
+
gr.Markdown("<div class='description-text'>Admins can register new doctors using this secure panel. Generated at 05:51 PM CET on Friday, May 16, 2025.</div>")
|
| 111 |
|
| 112 |
with gr.Column():
|
| 113 |
full_name = gr.Textbox(label="Full Name", placeholder="e.g. Dr. Sarah Hopkins")
|