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/Chat/_chat_subject.tpl

21 lines
650 B
Smarty

<section>
<form name="changesubject">
<h3>{$c->__('chatroom.subject')}</h3>
<div>
<textarea name="subject" placeholder="{$c->__('chatroom.subject')}">{$subject->subject}</textarea>
<label for="subject">{$c->__('chatroom.subject')}</label>
</div>
</section>
<div>
<a class="button flat" onclick="Dialog.clear()">
{$c->__('button.close')}
</a>
<a
class="button flat"
onclick="Chat_ajaxSetSubject('{$room}', movim_form_to_json('changesubject')); Dialog.clear();">
{$c->__('button.save')}
</a>
</div>
</div>