1{extends 'layout_view.tpl'}
2{block name="title"}
3	{title}{$title|escape}{/title}
4{/block}
5{block name="content"}
6	{include file='access/include_items.tpl'}
7	<form method="post" id="confirm-action" class="confirm-action" action="{service controller=$confirmController action=$confirmAction}">
8		{include file='access/include_hidden.tpl'}
9		<div class="form-group row">
10			<label class="col-form-label col-md-12">{tr}Email this wiki page{/tr}</label>
11			<div class="col-md-12">
12				<input class="form-control" type="text" name="wikiTpl">
13				<div class="form-text">{tr}Enter page name.
14						The wiki page must have a page description, which is used as the subject of the email.
15						Enable the page descriptions feature at Control Panels &gt; Wiki.{/tr}
16				</div>
17			</div>
18		</div>
19		<div class="form-group row">
20			<label class="col-form-label col-md-12">{tr}Bcc{/tr}</label>
21			<div class="col-md-12">
22				<input class="form-control" type="text" name="bcc">
23				<div class="form-text">{tr}Enter a valid email to send a blind copy to (optional).{/tr}</div>
24			</div>
25		</div>
26		{include file='access/include_submit.tpl'}
27	</form>
28{/block}