Commit 60381f0b
Changed files (1)
app
views
passwords
app/views/passwords/new.html.erb
@@ -0,0 +1,21 @@
+<div class="page-header">
+ <h1>Forgot your password?</h1>
+</div>
+<div class="row-fluid">
+ <div class="span12">
+ <%= form_for(@user, url: passwords_path, html: { method: :post }, class: "form-horizontal") do |f| %>
+ <fieldset>
+ <legend>Type your email address below to reset your password.</legend>
+ <div class="control-group">
+ <%= f.label :email, class: "control-label" %>
+ <div class="controls">
+ <%= f.email_field :email, placeholder: "Email", class: "input-xlarge" %>
+ </div>
+ </div>
+ <div class="actions">
+ <input type="submit" class="btn btn-primary" value="Send me reset password instructions">
+ </div>
+ </fieldset>
+ <% end %>
+ </div>
+</div>