prism/service/integration/signal/templates/signal-content.html
2026-02-12 23:13:16 -08:00

26 lines
794 B
HTML

{{if .Linked}}
<p><strong>To unlink:</strong></p>
<ol class="link-instructions">
<li>Open Signal on your phone</li>
<li>Go to Settings → Linked Devices</li>
<li>Find and remove this device</li>
</ol>
{{else}}
{{if .Error}}
<p class="channel-not-configured">{{.Error}}</p>
{{else}}
<button class="btn-primary" onclick="linkSignal(this)">Link</button>
<div id="signal-qr-container" class="qr-container" style="display:none;">
<p><strong>Scan this QR code with Signal:</strong></p>
<ol class="link-instructions">
<li>Open Signal on your phone</li>
<li>Go to Settings → Linked Devices</li>
<li>Tap "+" or "Link New Device"</li>
<li>Scan the QR code below</li>
</ol>
<div class="qr-code-wrapper">
<img id="signal-qr-code" alt="Signal QR Code">
</div>
</div>
{{end}}
{{end}}