Added dns updates

This commit is contained in:
Mr Sleeps
2026-07-01 16:52:17 +01:00
parent 8a5bdb2e2d
commit 55925549e4
11 changed files with 433 additions and 714 deletions
@@ -0,0 +1,25 @@
<x-filament-panels::page>
<form wire:submit="generateDMARC">
{{ $this->form }}
</form>
<x-filament::modal id="dmarc-record-modal" width="2xl">
<x-slot name="heading">
Generated DMARC Record
</x-slot>
<div class="space-y-4">
<pre class="bg-gray-50 dark:bg-gray-800 rounded-lg p-4 text-sm overflow-x-auto whitespace-pre-wrap break-all">{{ $generatedRecord }}</pre>
<button
type="button"
x-on:click="navigator.clipboard.writeText(@js($generatedRecord))"
class="fi-btn"
>
Copy to clipboard
</button>
</div>
</x-filament::modal>
<div wire:poll.5s>
</div>
</x-filament-panels::page>