1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/movim_ynh.git synced 2024-09-03 19:46:19 +02:00
movim_ynh/sources/app/widgets/Groups/_groups_add.tpl

21 lines
619 B
Smarty

<section>
<form name="groupadd">
<h3>{$c->__('groups.add')}</h3>
<div>
<input name="name" placeholder="{$c->__('groups.name_example')}" type="text" required />
<label for="name">{$c->__('groups.name')}</label>
</div>
</section>
<div>
<a class="button flat" onclick="Dialog.clear()">
{$c->__('button.close')}
</a>
<a
class="button flat"
onclick="Groups_ajaxAddConfirm('{$server}', movim_form_to_json('groupadd')); Dialog.clear();">
{$c->__('button.add')}
</a>
</div>
</div>