]> gitweb.mndrdr.org Git - arelpe.git/commitdiff
Minor tweaks to profile page.
authorAidan Cornelius-Bell <[email protected]>
Wed, 9 Oct 2024 23:27:18 +0000 (09:57 +1030)
committerAidan Cornelius-Bell <[email protected]>
Wed, 9 Oct 2024 23:27:18 +0000 (09:57 +1030)
app/views/devise/registrations/edit.html.erb
app/views/subscription_mailer/.DS_Store [copied from app/assets/images/.DS_Store with 100% similarity]

index 91debf6f9673458e712e9cae6aeaeb4a6c1dbf25..9022fdaa7651faeae442da75d8a0a28a8d4969d1 100644 (file)
@@ -5,21 +5,16 @@
   
   <% 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| %>