xmpp.chapril.org-conversejs/src/templates/contacts_panel.html
Mathias Ertl 913eeec351 Csp compat 2 (#864)
* remove inline style in roster template

* remove inline style from contacts panel

* remove inline-css from roster_filters

* remove inline style in trimmed chats

* remove last inline style from minimized chats

* update converse.css

* update changelog
2017-04-30 10:22:54 +02:00

16 lines
614 B
HTML

<form class="pure-form set-xmpp-status" action="" method="post">
<span id="xmpp-status-holder">
<select id="select-xmpp-status">
<option value="online">{{{label_online}}}</option>
<option value="dnd">{{{label_busy}}}</option>
<option value="away">{{{label_away}}}</option>
{[ if (include_offline_state) { ]}
<option value="offline">{{{label_offline}}}</option>
{[ } ]}
{[ if (allow_logout) { ]}
<option value="logout">{{{label_logout}}}</option>
{[ } ]}
</select>
</span>
</form>