IsaacKerson
add db_path function
178e0a0 unverified
raw
history blame
698 Bytes
import streamlit as st
import sqlite3
import random
import datetime
# Custom imports
from pages.utils import *
def app():
DATABASE = db_path('quiz_maker.db')
st.markdown("## Join")
with st.form("join_form"):
first_name = st.text_input("First Name")
last_name = st.text_input("Last Name")
user_name = st.text_input("User Name")
password1 = st.text_input("Password", type="password")
password2 = st.text_input("Confirm Password", type="password")
submitted = st.form_submit_button("Submit")
if submitted and password1.strip() != password2.strip():
st.warning("The passwords do not match.")