-
-
Notifications
You must be signed in to change notification settings - Fork 109
Expand file tree
/
Copy pathunsubscribed.blade.php
More file actions
25 lines (20 loc) · 841 Bytes
/
unsubscribed.blade.php
File metadata and controls
25 lines (20 loc) · 841 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<x-layouts.auth>
<x-slot:title>Notifications Disabled</x-slot:title>
<flux:card class="space-y-4">
<div class="text-center">
<flux:icon.check-circle variant="solid" class="mx-auto size-12 text-green-500" />
</div>
<flux:heading size="lg" class="text-center">Notifications Disabled</flux:heading>
<flux:text class="text-center">
New plugin notifications have been turned off for <strong>{{ $maskedEmail }}</strong>.
</flux:text>
<flux:text class="text-center text-sm">
Did this happen by mistake?
</flux:text>
<div class="flex justify-center">
<flux:button :href="$resubscribeUrl" variant="primary">
Re-enable Notifications
</flux:button>
</div>
</flux:card>
</x-layouts.auth>