summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/jira_connect/subscriptions/pages/sign_in/sign_in_gitlab_multiversion/setup_instructions.vue
blob: 00fa739b5183b01f8897aab62c3612c2afa43d8a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
<script>
import { GlButton, GlLink } from '@gitlab/ui';
import { OAUTH_SELF_MANAGED_DOC_LINK } from '~/jira_connect/subscriptions/constants';

export default {
  components: {
    GlButton,
    GlLink,
  },
  OAUTH_SELF_MANAGED_DOC_LINK,
};
</script>

<template>
  <div class="gl-max-w-62 gl-mx-auto gl-mt-7">
    <h3>{{ s__('JiraService|Continue setup in GitLab') }}</h3>
    <p>
      {{
        s__(
          'JiraService|In order to complete the set up, you’ll need to complete a few steps in GitLab.',
        )
      }}
      <gl-link
        class="gl-reset-font-size!"
        :href="$options.OAUTH_SELF_MANAGED_DOC_LINK"
        target="_blank"
        >{{ __('Learn more') }}</gl-link
      >
    </p>

    <gl-button variant="confirm" @click="$emit('next')">
      {{ __('Next') }}
    </gl-button>
  </div>
</template>