CosmoAI commited on
Commit
75972bc
·
1 Parent(s): 5c60356
Files changed (1) hide show
  1. app.py +45 -65
app.py CHANGED
@@ -1,67 +1,47 @@
1
  import streamlit as st
2
- from streamlit_option_menu import option_menu
3
- import json
4
- from Home import dashboard
5
 
6
-
7
-
8
- st.page_config(page_title="Auth", page_icon=":lock:")
9
-
10
-
11
- def loadfile():
12
- with open("database/users.json") as file:
13
- data = json.load(file)
14
- return data
15
-
16
- def savefile(data):
17
- with open("database/users.json", "w") as file:
18
- json.dump(data, file, indent=4)
19
-
20
-
21
-
22
- def login():
23
- st.write("Login")
24
- username = st.text_input("Username")
25
- password = st.text_input("Password", type="password")
26
- if st.button("Login"):
27
- data = loadfile()
28
- if username in data:
29
- if data[username]["password"] == password:
30
- st.success("Logged In as {}".format(username))
31
- st.session_state.user = username
32
- else:
33
- st.error("Wrong Password")
34
- else:
35
- st.error("User not found")
36
-
37
-
38
- def register():
39
- st.write("Register")
40
- username = st.text_input("Username")
41
- password = st.text_input("Password", type="password")
42
- if st.button("Register"):
43
- data = loadfile()
44
- if username in data:
45
- st.error("User already exists")
46
- else:
47
- data[username] = {}
48
- data[username]["password"] = password
49
- savefile(data)
50
- st.success("User created")
51
-
52
-
53
-
54
-
55
- def main():
56
- if 'user' not in st.session_state:
57
- st.session_state.user = None
58
-
59
- if st.session_state.user is None:
60
- with st.sidebar:
61
- selected = option_menu(None, ['Login', 'Register'])
62
- if selected == 'Login':
63
- login()
64
- elif selected == 'Register':
65
- register()
66
- else:
67
- dashboard()
 
1
  import streamlit as st
 
 
 
2
 
3
+ # Add a custom CSS style for the background video and centered button
4
+ st.markdown(
5
+ """
6
+ <style>
7
+ .fullscreen-bg {
8
+ position: fixed;
9
+ top: 0;
10
+ right: 0;
11
+ bottom: 0;
12
+ left: 0;
13
+ overflow: hidden;
14
+ z-index: -1;
15
+ }
16
+ .fullscreen-bg video,
17
+ .fullscreen-bg img {
18
+ width: 100%;
19
+ height: auto;
20
+ }
21
+ .centered-button {
22
+ position: absolute;
23
+ top: 50%;
24
+ left: 50%;
25
+ transform: translate(-50%, -50%);
26
+ z-index: 1;
27
+ }
28
+ </style>
29
+ """,
30
+ unsafe_allow_html=True
31
+ )
32
+
33
+ # Add the background video or GIF
34
+ st.markdown(
35
+ """
36
+ <div class="fullscreen-bg">
37
+ <video loop muted autoplay playsinline>
38
+ <source src="universe.mp4" type="video/mp4">
39
+ Your browser does not support the video tag.
40
+ </video>
41
+ </div>
42
+ """,
43
+ unsafe_allow_html=True
44
+ )
45
+
46
+ # Add the centered button
47
+ st.button("Explore the Universe", key="explore_button", class_="centered-button")