Spaces:
Running
Running
Create register.py
Browse files- register.py +16 -0
register.py
ADDED
@@ -0,0 +1,16 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import streamlit as st
|
2 |
+
|
3 |
+
|
4 |
+
|
5 |
+
|
6 |
+
def REGISTER():
|
7 |
+
st.text("Account Activation")
|
8 |
+
#with st.form("register_form"):
|
9 |
+
|
10 |
+
name=st.text_input("name of the organization ( lab,pharma) ?")
|
11 |
+
operation=st.text_area("primary operation of the organization ? ")
|
12 |
+
username=st.text_input("setup a username")
|
13 |
+
password=st.text_input("setup a password")
|
14 |
+
if st.button("register"):
|
15 |
+
pass
|
16 |
+
|