HemanthSai7's picture
Render SVG Logo
53c5d8a
raw
history blame contribute delete
No virus
2.69 kB
import json
import requests
import streamlit as st
def login():
base_url = 'https://caffeinecrew-techdocs.hf.space'
headers={"accept":"application/json"}
tab1, tab2 = st.tabs(["Login", "Signup"])
with tab1:
with st.form(key="myform2"):
username = st.text_input(label="Username", label_visibility="collapsed", placeholder="Username")
password = st.text_input(label="Password", label_visibility="collapsed", placeholder="Password", type="password")
login_button = st.form_submit_button(label="Login")
with st.spinner("Logging in..."):
if login_button:
try:
credentials = {"username":username, "password":password}
response = requests.post(base_url + "/auth/login", headers=headers, data=json.dumps(credentials))
if (response.status_code!=200):
raise Exception("Login Failed")
# res_dict.update(response.json())
st.session_state["username"] = username
st.session_state["access_token"] = response.json()['access_token']
st.session_state["refresh_token"] = response.json()['refresh_token']
st.success("Logged in successfully")
st.rerun()
except Exception as e:
st.error(e)
with tab2:
with st.form(key="myform1"):
username = st.text_input(label="Username", label_visibility="collapsed", placeholder="Username")
password = st.text_input(label="Password", label_visibility="collapsed", placeholder="Password", type="password")
email = st.text_input(label="Email", label_visibility="collapsed", placeholder="Email")
signup_button = st.form_submit_button(label="Signup")
with st.spinner("Signing up..."):
if signup_button:
try:
credentials = {"username":username, "password":password, "email":email}
response = requests.post(url=base_url + "/auth/signup", headers=headers, data=json.dumps(credentials))
if (response.status_code!=200):
raise Exception("Signup Failed")
st.success("Signed up successfully")
except:
st.error("Signup Failed")
st.divider()
st.subheader(":rainbow[Our Prototype in Action ]🎬")
with st.expander("Demo video 🎬",expanded=True):
st.video("frontend/images/Showcase.mp4")