{% import '_includes/forms' as forms %} {% import 'verbb-base/_macros' as macros %} {% set displayName = integration.displayName() %} {% set instructions %} ### Connect to the {name} API 1. Go to the Slack App Center. 1. Create a new app, by entering an **App Name** and **Development Slack Workspace**. 1. In the left-hand sidebar, under **Settings**, click **Basic Information**. 1. Under the **App Credentials** section, copy the **Client ID** and **Client Secret** values and paste into the fields below. 1. In the left-hand sidebar, under **Features**, click **OAuth & Permissions**. 1. In the section **Redirect URLs**, click the **Add New Redirect URL** button and enter the value from the **Redirect URI** field below. 1. Then click the **Add** button, then click the **Save URLs** button. {% endset %}
{{ instructions | t('formie', { name: displayName }) | md }}
{{ macros.proxyField(fieldVariables, 'textField', { readonly: true, label: 'Redirect URI' | t('formie'), instructions: 'Use this URI when setting up your {name} app.' | t('formie'), value: integration.getRedirectUri(), }) }} {% if not craft.app.config.general.allowAdminChanges %} {{ 'Integration settings can only be editable on an environment with `allowAdminChanges` enabled.' | t('formie') | md(inlineOnly=true) }} {% endif %} {{ macros.proxyField(fieldVariables, 'autosuggestField', { label: 'Client ID' | t('formie'), instructions: 'Enter your {name} {label} here.' | t('formie'), name: 'clientId', required: true, suggestEnvVars: true, value: integration.settings.clientId ?? '', warning: macros.configWarning('clientId', 'formie'), errors: integration.getErrors('clientId'), }) }} {{ macros.proxyField(fieldVariables, 'autosuggestField', { label: 'Client Secret' | t('formie'), instructions: 'Enter your {name} {label} here.' | t('formie'), name: 'clientSecret', required: true, suggestEnvVars: true, value: integration.settings.clientSecret ?? '', warning: macros.configWarning('clientSecret', 'formie'), errors: integration.getErrors('clientSecret'), }) }}