2013-02-05 14:16:51 -05:00
|
|
|
<div id="simple-container">
|
2015-02-19 18:28:38 -05:00
|
|
|
<%if @error%>
|
2013-02-05 14:16:51 -05:00
|
|
|
<div class='alert alert-error'>
|
2015-02-19 18:28:38 -05:00
|
|
|
<%= @error %>
|
2013-02-05 14:16:51 -05:00
|
|
|
</div>
|
|
|
|
<%end%>
|
|
|
|
<% if @user.present? and @user.errors.any? %>
|
|
|
|
<div class='alert alert-error'>
|
|
|
|
<% @user.errors.full_messages.each do |msg| %>
|
|
|
|
<li><%= msg %></li>
|
|
|
|
<% end %>
|
|
|
|
</div>
|
|
|
|
<% end %>
|
|
|
|
|
2015-02-19 18:28:38 -05:00
|
|
|
<%if @success%>
|
2013-02-05 14:16:51 -05:00
|
|
|
<p>
|
2015-02-19 18:28:38 -05:00
|
|
|
<%= @success %>
|
2013-03-20 16:55:56 -04:00
|
|
|
<%- if @requires_approval %>
|
|
|
|
<%= t 'login.not_approved' %>
|
|
|
|
<% else %>
|
2014-07-23 12:32:06 -04:00
|
|
|
<br>
|
|
|
|
<br>
|
|
|
|
<a class="btn" href="/"><%= t('password_reset.continue', site_name: SiteSetting.title) %></a>
|
2013-03-20 16:55:56 -04:00
|
|
|
<% end %>
|
2013-02-05 14:16:51 -05:00
|
|
|
</p>
|
|
|
|
<% else %>
|
|
|
|
<%if @user.present? %>
|
2014-01-21 12:42:20 -05:00
|
|
|
<h3>
|
|
|
|
<% if @user.has_password? %>
|
|
|
|
<%= t 'password_reset.choose_new' %>
|
|
|
|
<% else %>
|
|
|
|
<%= t 'password_reset.choose' %>
|
|
|
|
<% end %>
|
|
|
|
</h3>
|
2013-02-05 14:16:51 -05:00
|
|
|
|
|
|
|
<%=form_tag({}, method: :put) do %>
|
|
|
|
<p>
|
2014-10-01 11:13:56 -04:00
|
|
|
<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>
|
2013-02-05 14:16:51 -05:00
|
|
|
</p>
|
|
|
|
<p>
|
2014-01-21 12:42:20 -05:00
|
|
|
<%=submit_tag( @user.has_password? ? t('password_reset.update') : t('password_reset.save'), class: 'btn')%>
|
2013-02-05 14:16:51 -05:00
|
|
|
</p>
|
|
|
|
<%end%>
|
|
|
|
<%end%>
|
|
|
|
<%end%>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<script type="text/javascript">
|
|
|
|
document.getElementById('user_password').focus()
|
|
|
|
</script>
|