mirror of
https://github.com/zulip/zulip.git
synced 2025-11-17 12:21:58 +00:00
Add a table to the administration page that will allow realm admins to activate and deactivate the supported authentication methods for that realm.
12 lines
227 B
Handlebars
12 lines
227 B
Handlebars
{{#with method}}
|
|
<tr class="method_row" data-method="{{method}}">
|
|
<td>
|
|
<span class="method">{{method}}</span>
|
|
</td>
|
|
<td>
|
|
<input type="checkbox"
|
|
{{#if enabled}}checked="checked"{{/if}} />
|
|
</td>
|
|
</tr>
|
|
{{/with}}
|