trigger password manager for password reset page

This commit is contained in:
Arpit Jalan 2014-10-01 20:43:56 +05:30
parent 7a0b1c1dff
commit 14bc197cf6

View File

@ -21,7 +21,6 @@
<br>
<br>
<a class="btn" href="/"><%= t('password_reset.continue', site_name: SiteSetting.title) %></a>
<%= render partial: 'auto_redirect_home' %>
<% end %>
</p>
<% else %>
@ -36,8 +35,9 @@
<%=form_tag({}, method: :put) do %>
<p>
<input id="user_password" name="password" size="30" type="password" maxlength="<%= User.max_password_length %>">
<label><%= t('js.user.password.instructions', count: SiteSetting.min_password_length) %></label>
<span style="display: none;"><input name="username" type="text" value="<%= @user.username %>"></span>
<input id="user_password" name="password" size="30" type="password" maxlength="<%= User.max_password_length %>">
<label><%= t('js.user.password.instructions', count: SiteSetting.min_password_length) %></label>
</p>
<p>
<%=submit_tag( @user.has_password? ? t('password_reset.update') : t('password_reset.save'), class: 'btn')%>