refactor(proxy_server.py): move admin ui to be locally hosted within proxy

This commit is contained in:
Krrish Dholakia 2023-12-28 15:06:32 +05:30
parent 2f012a5088
commit e5a287379a
4 changed files with 205 additions and 2 deletions

View file

@ -5,7 +5,7 @@ from dotenv import load_dotenv
load_dotenv()
import streamlit as st
import base64, binascii, os
import base64, binascii, os, json
from admin import admin_page
from auth import auth_page, verify_with_otp
import urllib.parse