mirror of
https://github.com/louislam/uptime-kuma.git
synced 2025-01-19 10:58:06 +00:00
31 lines
982 B
Vue
31 lines
982 B
Vue
|
<template>
|
||
|
<div class="mb-3">
|
||
|
<label for="goalert-base-url" class="form-label">{{ $t("Base URL") }}</label>
|
||
|
<div class="input-group mb-3">
|
||
|
<input class="form-control" id="goalert-base-url" v-model="$parent.notification.goAlertBaseURL" type="text" required>
|
||
|
</div>
|
||
|
<i18n-t tag="div" keypath="goAlertInfo" class="form-text">
|
||
|
<a href="https://goalert.me" target="_blank">https://goalert.me</a>
|
||
|
</i18n-t>
|
||
|
</div>
|
||
|
|
||
|
<div class="mb-3">
|
||
|
<label for="goalert-token" class="form-label">{{ $t("Token") }}</label>
|
||
|
<HiddenInput id="goalert-token" v-model="$parent.notification.goAlertToken" autocomplete="one-time-code" :required="true"></HiddenInput>
|
||
|
|
||
|
<div class="form-text">
|
||
|
{{ $t("goAlertIntegrationKeyInfo") }}
|
||
|
</div>
|
||
|
</div>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
import HiddenInput from "../HiddenInput.vue";
|
||
|
|
||
|
export default {
|
||
|
components: {
|
||
|
HiddenInput,
|
||
|
},
|
||
|
}
|
||
|
</script>
|