discourse/app/views/safe_mode/index.html.erb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

35 lines
887 B
Plaintext
Raw Normal View History

<div class='container safe-mode'>
<h2><%= t 'safe_mode.title'%></h2>
<%= form_tag(safe_mode_enter_path) do %>
<p>
<%= t 'safe_mode.description' %>
</p>
<p>
<label>
<%= check_box_tag 'no_themes', true, !flash[:must_select]%>
<%= t 'safe_mode.no_themes' %>
</label>
</p>
<p>
<label>
<%= check_box_tag 'no_unofficial_plugins', true, !flash[:must_select] %>
<%= t 'safe_mode.no_unofficial_plugins' %>
</label>
</p>
<p>
<label>
<%= check_box_tag 'no_plugins', true, !flash[:must_select] %>
<%= t 'safe_mode.no_plugins' %>
</label>
</p>
<p>
<%= submit_tag t('safe_mode.enter'), class: 'btn btn-danger' %>
<%- if flash[:must_select] %>
<span class='safe-mode-warning'>
⚠️ <%= t 'safe_mode.must_select' %>
</span>
<%- end %>
</p>
<% end %>
</div>