するとsign_up
、確認メールが届きます。
確認しないでください。代わりに、アプリに移動して をクリックしdidn't receive confirmation instructions
、同じメール ID を入力します。
reset password instructions
の代わりにメールが届きますconfirmation email
。
これはdevise
バグですか、他の誰かがこの問題に遭遇しましたか?
確認メールのコード
<%= form_for(resource, :as => resource_name, :url => password_path(resource_name), :html => { :method => :post }) do |f| %>
<%= devise_error_messages! %>
<div class="clearfix">
<%= f.label :email %>
<div class="input">
<%= f.email_field :email, :class => 'xlarge' %>
</div>
</div>
<div class="actions">
<%= button_tag "Resend confirmation instructions", :class => 'btn primary' %>
</div>
<% end %>