<% if current_user %>
<% if current_user.ongoing_subscriber? %>
- <p>Thank you for your ongoing support!</p>
+ <p>Thank you for your <%= link_to "ongoing support", subscriptions_path %>!</p>
<% elsif current_user.one_time_donor? %>
- <p>Thank you for your one-time donation!</p>
+ <p>Thank you for your <%= link_to "one-time donation", subscriptions_path %>!</p>
<% elsif current_user.non_financial_supporter? %>
<p>Thank you for your non-financial support!</p>
<% else %>
- <p>Consider supporting mind reader to access premium features!</p>
+ <p>Consider <%= link_to "supporting mind reader", subscriptions_path %> to access extra features.</p>
<% end %>
<% end %>
-
- <p>Are you looking to get emails with new dispatches? You still need to register and confirm your email by following <a href="/about">instructions here</a>.</p>
-
- <p>On this page below you can modify your registration.</p>
-
<hr>
<%= form_for(resource, as: resource_name, url: registration_path(resource_name), html: { method: :put }) do |f| %>