openvk/Web/Presenters/templates/Group/Create.xml
2020-07-13 06:57:28 +03:00

43 lines
1.3 KiB
XML

{extends "../@layout.xml"}
{block title}{_"create_group"}{/block}
{block header}
{_"create_group"}
{/block}
{block content}
<div class="container_gray">
<h4>{_"create_group"}</h4>
<form method="POST" enctype="multipart/form-data">
<table cellspacing="7" cellpadding="0" width="60%" border="0" align="center">
<tbody>
<tr>
<td width="120" valign="top">
<span class="nobold">{_"name"}: </span>
</td>
<td>
<input type="text" name="name" value="" />
</td>
</tr>
<tr>
<td width="120" valign="top">
<span class="nobold">{_"description"}: </span>
</td>
<td>
<textarea type="text" name="about"></textarea>
</td>
</tr>
<tr>
<td>
</td>
<td>
<input type="hidden" name="hash" value="{$csrfToken}" />
<input type="submit" value="{_'create'}" class="button" />
</td>
</tr>
</tbody>
</table>
</form>
</div>
{/block}