summaryrefslogtreecommitdiffstats
path: root/src/components/notifications/LineNotify.vue
blob: 0f6897f46a272099d3792f9c61bca1fab0be457e (plain)
1
2
3
4
5
6
7
8
9
<template>
    <div class="mb-3">
        <label for="line-notify-access-token" class="form-label">{{ $t("Access Token") }}</label>
        <input id="line-notify-access-token" v-model="$parent.notification.lineNotifyAccessToken" type="text" class="form-control" :required="true">
    </div>
    <i18n-t tag="div" keypath="wayToGetLineNotifyToken" class="form-text" style="margin-top: 8px;">
        <a href="https://notify-bot.line.me/" target="_blank">https://notify-bot.line.me/</a>
    </i18n-t>
</template>