Kaludi commited on
Commit
4b3dbb6
·
1 Parent(s): c294ccb

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
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', 'api.yourapi.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)
 
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)