mirror of
https://github.com/Einundzwanzig-Podcast/einundzwanzig-portal.git
synced 2025-12-13 06:56:48 +00:00
book cases added
This commit is contained in:
5
resources/views/vendor/comments/signed/approval/approveComment.blade.php
vendored
Normal file
5
resources/views/vendor/comments/signed/approval/approveComment.blade.php
vendored
Normal file
@@ -0,0 +1,5 @@
|
||||
<x-comments::signed-layout>
|
||||
|
||||
The comment has been approved.
|
||||
|
||||
</x-comments::signed-layout>
|
||||
15
resources/views/vendor/comments/signed/approval/approveCommentConfirmation.blade.php
vendored
Normal file
15
resources/views/vendor/comments/signed/approval/approveCommentConfirmation.blade.php
vendored
Normal file
@@ -0,0 +1,15 @@
|
||||
<x-comments::signed-layout>
|
||||
|
||||
Do you want to approve the comment?
|
||||
|
||||
<form class="form" method="POST">
|
||||
@csrf
|
||||
<button id="confirmationButton" class="button" type="submit">Approve</button>
|
||||
</form>
|
||||
|
||||
</x-comments::signed-layout>
|
||||
|
||||
<script>
|
||||
document.getElementById("confirmationButton").click();
|
||||
</script>
|
||||
|
||||
5
resources/views/vendor/comments/signed/approval/rejectComment.blade.php
vendored
Normal file
5
resources/views/vendor/comments/signed/approval/rejectComment.blade.php
vendored
Normal file
@@ -0,0 +1,5 @@
|
||||
<x-comments::signed-layout>
|
||||
|
||||
The comment has been rejected.
|
||||
|
||||
</x-comments::signed-layout>
|
||||
14
resources/views/vendor/comments/signed/approval/rejectCommentApproval.blade.php
vendored
Normal file
14
resources/views/vendor/comments/signed/approval/rejectCommentApproval.blade.php
vendored
Normal file
@@ -0,0 +1,14 @@
|
||||
<x-comments::signed-layout>
|
||||
|
||||
Do you want to reject the comment?
|
||||
|
||||
<form class="form" method="POST">
|
||||
@csrf
|
||||
<button id="confirmationButton" class="button" type="submit">Approve</button>
|
||||
</form>
|
||||
|
||||
</x-comments::signed-layout>
|
||||
|
||||
<script>
|
||||
document.getElementById("confirmationButton").click();
|
||||
</script>
|
||||
5
resources/views/vendor/comments/signed/notificationSubscription/unsubscribe.blade.php
vendored
Normal file
5
resources/views/vendor/comments/signed/notificationSubscription/unsubscribe.blade.php
vendored
Normal file
@@ -0,0 +1,5 @@
|
||||
<x-comments::signed-layout>
|
||||
|
||||
You have been unsubscribed.
|
||||
|
||||
</x-comments::signed-layout>
|
||||
5
resources/views/vendor/comments/signed/notificationSubscription/unsubscribeAll.blade.php
vendored
Normal file
5
resources/views/vendor/comments/signed/notificationSubscription/unsubscribeAll.blade.php
vendored
Normal file
@@ -0,0 +1,5 @@
|
||||
<x-comments::signed-layout>
|
||||
|
||||
You have been unsubscribed from every comment notification.
|
||||
|
||||
</x-comments::signed-layout>
|
||||
14
resources/views/vendor/comments/signed/notificationSubscription/unsubscribeAllApproval.blade.php
vendored
Normal file
14
resources/views/vendor/comments/signed/notificationSubscription/unsubscribeAllApproval.blade.php
vendored
Normal file
@@ -0,0 +1,14 @@
|
||||
<x-comments::signed-layout>
|
||||
|
||||
Do you want to unsubscribe from every comment notification?
|
||||
|
||||
<form class="form" method="POST">
|
||||
@csrf
|
||||
<button id="confirmationButton" class="button" type="submit">Approve</button>
|
||||
</form>
|
||||
|
||||
</x-comments::signed-layout>
|
||||
|
||||
<script>
|
||||
document.getElementById("confirmationButton").click();
|
||||
</script>
|
||||
14
resources/views/vendor/comments/signed/notificationSubscription/unsubscribeApproval.blade.php
vendored
Normal file
14
resources/views/vendor/comments/signed/notificationSubscription/unsubscribeApproval.blade.php
vendored
Normal file
@@ -0,0 +1,14 @@
|
||||
<x-comments::signed-layout>
|
||||
|
||||
Do you want to unsubscribe?
|
||||
|
||||
<form class="form" method="POST">
|
||||
@csrf
|
||||
<button id="confirmationButton" class="button" type="submit">Approve</button>
|
||||
</form>
|
||||
|
||||
</x-comments::signed-layout>
|
||||
|
||||
<script>
|
||||
document.getElementById("confirmationButton").click();
|
||||
</script>
|
||||
10
resources/views/vendor/comments/signed/signedLayout.blade.php
vendored
Normal file
10
resources/views/vendor/comments/signed/signedLayout.blade.php
vendored
Normal file
@@ -0,0 +1,10 @@
|
||||
<html lang="en">
|
||||
<head>
|
||||
|
||||
</head>
|
||||
<body>
|
||||
<div>
|
||||
{{ $slot }}
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user