fixes #47: Login Reminder issue
This commit is contained in:
@@ -5,5 +5,14 @@
|
|||||||
<p>If you supplied an email address when signing up, <%= Danbooru.config.app_name %> can email you your login information. Password details will not be provided and will not be changed.</p>
|
<p>If you supplied an email address when signing up, <%= Danbooru.config.app_name %> can email you your login information. Password details will not be provided and will not be changed.</p>
|
||||||
|
|
||||||
<p>If you didn't supply a valid email address, you are out of luck.</p>
|
<p>If you didn't supply a valid email address, you are out of luck.</p>
|
||||||
|
|
||||||
|
<%= form_tag(maintenance_user_login_reminder_path, :class => "simple_form") do %>
|
||||||
|
<div class="input email required">
|
||||||
|
<label for="user_email" class="required">Email</label>
|
||||||
|
<%= email_field(:user, :email) %>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<%= submit_tag "Submit" %>
|
||||||
|
<% end %>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@@ -6,8 +6,11 @@
|
|||||||
|
|
||||||
<p>If you didn't supply a valid email address, you are out of luck.</p>
|
<p>If you didn't supply a valid email address, you are out of luck.</p>
|
||||||
|
|
||||||
<%= form_tag(maintenance_user_password_reset_path, :method => :post) do %>
|
<%= form_tag(maintenance_user_password_reset_path, :class => "simple_form") do %>
|
||||||
<%= text_field :nonce, :email %>
|
<div class="input email required">
|
||||||
|
<label for="nonce_email" class="required">Email</label>
|
||||||
|
<%= text_field :nonce, :email %>
|
||||||
|
</div>
|
||||||
<%= submit_tag "Submit" %>
|
<%= submit_tag "Submit" %>
|
||||||
<% end %>
|
<% end %>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
Reference in New Issue
Block a user