aboutsummaryrefslogtreecommitdiffstats
path: root/resources/views/dashboard/delete.edge
blob: d3fc0df3417bced66177a3dd4c4cc4db7e5727b1 (plain) (blame)
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
26
27
28
29
30
31
@layout('layouts.main')

@section('content')
<h2>Delete Ferdi account</h2>
@if(flashMessage('error'))
    <div class="alert">
        {{ flashMessage('error') }} 
    </div>
@endif
@if(old('message'))
    <div class="alert">
        {{ old('message') }}
    </div>
@endif

<form action="/user/delete" method="POST">
    <p>Are you sure, that you want to delete your Ferdi account?</p>
    <p>This will <b>permanently</b> delete all your account settings, services and workspaces.</p>
    <div>
        {{ csrfField() }}
        <button style="background-color:#F6416C;margin-bottom:1rem;">Yes, delete account</button>
    </div>
</form>

<div>
    <a class="button" href="/user/account" style="background-color:#28C76F;">Cancel</a>
</div>

</div>

@endsection