discourse/app/views/users/admin_login.html.erb

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

11 lines
372 B
Plaintext
Raw Normal View History

<% if @message %>
<%= @message %>
<% if @error %><p><%= @error %></p><% end %>
<% else %>
<%=form_tag(u_admin_login_path, method: :put) do %>
<%= label_tag(:email, t('admin_login.email_input')) %>
<%= text_field_tag(:email, nil, autofocus: true) %><br><br>
2019-10-22 16:45:23 -04:00
<%= submit_tag t('admin_login.submit_button'), class: "btn btn-primary" %>
<% end %>
<% end %>