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.
|
|
|
<template>
|
|
|
|
<div class="mb-3">
|
|
|
|
<label for="signal-url" class="form-label">{{ $t("Post URL") }}</label>
|
|
|
|
<input id="signal-url" v-model="$parent.notification.signalURL" type="url" pattern="https?://.+" class="form-control" required>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="mb-3">
|
|
|
|
<label for="signal-number" class="form-label">{{ $t("Number") }}</label>
|
|
|
|
<input id="signal-number" v-model="$parent.notification.signalNumber" type="text" class="form-control" required>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="mb-3">
|
|
|
|
<label for="signal-recipients" class="form-label">{{ $t("Recipients") }}</label>
|
|
|
|
<input id="signal-recipients" v-model="$parent.notification.signalRecipients" type="text" class="form-control" required>
|
|
|
|
|
|
|
|
<div class="form-text">
|
|
|
|
<p style="margin-top: 8px;">
|
|
|
|
{{ $t("needSignalAPI") }}
|
|
|
|
</p>
|
|
|
|
|
|
|
|
<p style="margin-top: 8px;">
|
|
|
|
{{ $t("wayToCheckSignalURL") }}
|
|
|
|
</p>
|
|
|
|
|
|
|
|
<p style="margin-top: 8px;">
|
|
|
|
<a href="https://github.com/bbernhard/signal-cli-rest-api" target="_blank">https://github.com/bbernhard/signal-cli-rest-api</a>
|
|
|
|
</p>
|
|
|
|
|
|
|
|
<p style="margin-top: 8px;">
|
|
|
|
{{ $t("signalImportant") }}
|
|
|
|
</p>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</template>
|