Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
|
@@ -148,6 +148,7 @@ css = """
|
|
| 148 |
position: fixed;
|
| 149 |
bottom: 0;
|
| 150 |
width: 100%;
|
|
|
|
| 151 |
text-align: center;
|
| 152 |
padding: 10px;
|
| 153 |
font-size: 12px;
|
|
@@ -170,6 +171,14 @@ with gr.Blocks(theme=gr.themes.Soft(), css=css) as demo:
|
|
| 170 |
login_btn = gr.Button("Unlock")
|
| 171 |
login_status = gr.Markdown()
|
| 172 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 173 |
# -------- Main App (Hidden) --------
|
| 174 |
with gr.Column(visible=False) as app_content:
|
| 175 |
with gr.Row():
|
|
|
|
| 148 |
position: fixed;
|
| 149 |
bottom: 0;
|
| 150 |
width: 100%;
|
| 151 |
+
height: 300px;
|
| 152 |
text-align: center;
|
| 153 |
padding: 10px;
|
| 154 |
font-size: 12px;
|
|
|
|
| 171 |
login_btn = gr.Button("Unlock")
|
| 172 |
login_status = gr.Markdown()
|
| 173 |
|
| 174 |
+
gr.HTML(
|
| 175 |
+
"""
|
| 176 |
+
<div class="footer">
|
| 177 |
+
© OhamLab Copyright
|
| 178 |
+
</div>
|
| 179 |
+
"""
|
| 180 |
+
)
|
| 181 |
+
|
| 182 |
# -------- Main App (Hidden) --------
|
| 183 |
with gr.Column(visible=False) as app_content:
|
| 184 |
with gr.Row():
|