Update app.py
Browse files
app.py
CHANGED
@@ -24,7 +24,7 @@ st.sidebar.header('JotForm API Options')
|
|
24 |
|
25 |
api_url = st.sidebar.selectbox('API URL', ['api.jotform.com', 'custom'])
|
26 |
if api_url == 'custom':
|
27 |
-
custom_api_url = st.sidebar.text_input('Custom API URL', '
|
28 |
api_url = custom_api_url.rstrip('/')
|
29 |
api_key = st.sidebar.text_input('Enter API Key', placeholder="API Key", value="")
|
30 |
limit = st.sidebar.slider('Form Limit', 100, 4000, 100, step=100)
|
|
|
24 |
|
25 |
api_url = st.sidebar.selectbox('API URL', ['api.jotform.com', 'custom'])
|
26 |
if api_url == 'custom':
|
27 |
+
custom_api_url = st.sidebar.text_input('Custom API URL', 'yourdomain.com/API/')
|
28 |
api_url = custom_api_url.rstrip('/')
|
29 |
api_key = st.sidebar.text_input('Enter API Key', placeholder="API Key", value="")
|
30 |
limit = st.sidebar.slider('Form Limit', 100, 4000, 100, step=100)
|