pixelfed/resources/views/groups/confirm-leave.blade.php
Daniel Supernault 2f1fe5bb23
Add Group views
2024-07-09 23:54:58 -06:00

35 lines
1.2 KiB
PHP

@extends('layouts.app')
@section('content')
<div class="container mt-5">
<div class="row justify-content-center">
<div class="col-12 col-md-7">
<p class="h3 font-weight-bold">Are you sure you want to leave this group?</p>
{{-- <p class="lead mb-3">If you decide to leave this group, all of your content will be permanently deleted.</p>
<p class="lead font-weight-bold">All of your interactions will be removed, including group</p>
<ul class="lead mb-5">
<li>Posts</li>
<li>Photos & Videos</li>
<li>Comments</li>
<li>Events</li>
<li>Polls</li>
<li>Likes</li>
<li>Shares</li>
<li>Reactions</li>
<li>Group Invitations</li>
<li>Moderation Reports</li>
<li>Recommendations</li>
</ul> --}}
<p class="mb-1">Any content you shared will remain accessible</p>
<p class="mb-3">You will not be able to re-join this group for 24 hours</p>
<hr>
<form class="d-flex justify-content-between">
<button class="btn btn-light border font-weight-bold" style="width: 75%;">Cancel</button>
<button type="submit" class="btn btn-danger font-weight-bold">Leave Group</button>
</form>
</div>
</div>
</div>
@endsection