27 lines
1.0 KiB
PHP
27 lines
1.0 KiB
PHP
@extends($layout)
|
|
|
|
@section('content')
|
|
|
|
<div class="pageheader">
|
|
<div class="pageicon"><span class="fa fa-trash"></span></div>
|
|
<div class="pagetitle">
|
|
<h5>{{ session('currentProjectClient') . ' // ' . session('currentProjectName') }}</h5>
|
|
<h1>{!! __('headline.delete_board') !!}</h1>
|
|
</div>
|
|
</div><!--pageheader-->
|
|
|
|
<div class="maincontent">
|
|
<div class="maincontentinner">
|
|
<h4 class="widget widgettitle">{!! __('subtitles.delete') !!}</h4>
|
|
<div class="widgetcontent">
|
|
<form method="post" action="{{ BASE_URL }}/ideas/delCanvas/{{ $tpl->escape($_GET['id']) }}">
|
|
<p>{!! __('text.are_you_sure_delete_idea_board') !!}</p>
|
|
<x-global::forms.button tag="input" inputType="submit" contentRole="primary" :labelText="__('buttons.yes_delete')" name="del" />
|
|
<x-global::forms.button tag="a" contentRole="tertiary" link="{{ BASE_URL }}/ideas/showBoards">{!! __('buttons.back') !!}</x-global::forms.button>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
@endsection
|