Skip to content

Commit

Permalink
Added website icon & name
Browse files Browse the repository at this point in the history
  • Loading branch information
EndermanPC committed Feb 12, 2024
1 parent 864b2dd commit 6a882af
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 1 deletion.
5 changes: 5 additions & 0 deletions account/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,11 @@
from account.username import get_username
from log.write import sys_log

st.set_page_config(
page_title="Neutron Account",
page_icon="👤",
)

conn = account_database_loader()
cursor = conn.cursor()

Expand Down
1 change: 0 additions & 1 deletion log.txt
Original file line number Diff line number Diff line change
@@ -1 +0,0 @@

8 changes: 8 additions & 0 deletions main.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@
from search.index import Search_Data
from search.safe import return_special_characters

if 'config' not in st.session_state:
st.session_state.config = st.set_page_config(
page_title="Neutron Search",
page_icon="🔎",
)

if 'conn0' not in st.session_state:
st.session_state.conn0 = database_loader(0)
conn0 = st.session_state.conn0
Expand All @@ -18,8 +24,10 @@
conn2 = st.session_state.conn2

st.title('Neutron')

st.session_state.setdefault('form_state', True)
Search_Result = []

with st.form('Input_Form'):
col1, col2, col3, col4, col5 = st.columns([3, 0.8, 0.6, 0.6, 0.8])
AForm = st.session_state.form_state
Expand Down

0 comments on commit 6a882af

Please sign in to comment.