openvk/Web/Presenters/templates/Group/Create.xml

44 lines
1.3 KiB
XML
Raw Normal View History

2020-06-07 19:04:43 +03:00
{extends "../@layout.xml"}
2022-08-09 09:37:08 +03:00
{block title}{_create_group}{/block}
2020-06-07 19:04:43 +03:00
{block header}
2022-08-09 09:37:08 +03:00
{_create_group}
2020-06-07 19:04:43 +03:00
{/block}
{block content}
2020-07-13 06:55:45 +03:00
<div class="container_gray">
2022-08-09 09:37:08 +03:00
<h4>{_create_group}</h4>
2020-06-07 19:04:43 +03:00
<form method="POST" enctype="multipart/form-data">
2020-07-13 06:55:45 +03:00
<table cellspacing="7" cellpadding="0" width="60%" border="0" align="center">
2020-06-07 19:04:43 +03:00
<tbody>
<tr>
<td width="120" valign="top">
2022-08-09 09:37:08 +03:00
<span class="nobold">{_name}: </span>
2020-06-07 19:04:43 +03:00
</td>
<td>
<input type="text" name="name" value="" />
</td>
</tr>
<tr>
<td width="120" valign="top">
2022-08-09 09:37:08 +03:00
<span class="nobold">{_description}: </span>
2020-06-07 19:04:43 +03:00
</td>
<td>
2020-07-13 06:55:45 +03:00
<textarea type="text" name="about"></textarea>
2020-06-07 19:04:43 +03:00
</td>
</tr>
<tr>
<td>
</td>
<td>
<input type="hidden" name="hash" value="{$csrfToken}" />
2022-08-09 09:37:08 +03:00
<input type="submit" value="{_create}" class="button" />
2020-06-07 19:04:43 +03:00
</td>
</tr>
</tbody>
</table>
</form>
2020-07-13 06:55:45 +03:00
</div>
2020-06-07 19:04:43 +03:00
{/block}