Skip to content
This repository has been archived by the owner on Dec 4, 2019. It is now read-only.

Commit

Permalink
#814: Add group deletion confirmation view.
Browse files Browse the repository at this point in the history
  • Loading branch information
franzliedke committed Feb 27, 2013
1 parent 5f9f962 commit f7d79dd
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions src/views/admin/groups/delete.blade.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
@extends('fluxbb::admin.layout.main')

@section('main')

Do you really want to delete the group "{{ $group->title }}"?

<form method="POST">
<input type="submit" value="Yes!" />
<a href="{{ route('admin_groups_index') }}">No, take me back!</a>
</form>

@stop

0 comments on commit f7d79dd

Please sign in to comment.