You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
666 B
16 lines
666 B
3 years ago
|
<template>
|
||
|
<div class="mb-3">
|
||
|
<label for="Bark Endpoint" class="form-label">{{ $t("Bark Endpoint") }}<span style="color: red;"><sup>*</sup></span></label>
|
||
|
<input id="Bark Endpoint" v-model="$parent.notification.barkEndpoint" type="text" class="form-control" required>
|
||
|
<div class="form-text">
|
||
|
<p><span style="color: red;"><sup>*</sup></span>{{ $t("Required") }}</p>
|
||
|
</div>
|
||
|
<i18n-t tag="div" keypath="wayToGetTeamsURL" class="form-text">
|
||
|
<a
|
||
|
href="https://github.com/Finb/Bark"
|
||
|
target="_blank"
|
||
|
>{{ $t("here") }}</a>
|
||
|
</i18n-t>
|
||
|
</div>
|
||
|
</template>
|