Your Membership Features

<% if current_user.monthly_dues >= 1000 %> <% cache "store_coupons_user_#{current_user.id}_dues_#{current_user.monthly_dues}" do %>

Shop Coupons

🎟 25% Off Everything: <%= CouponGenerator.new(current_user.id, "member_discount").generate %>

<% if current_user.monthly_dues >= 2500 %> 🎟 Level 3 Merch Gift (one time use): <%= CouponGenerator.new(current_user.id, "tee_pack").generate %>

👆 This coupon will give you 100% off:
DEV Tee Package (Unisex Cut) or DEV Tee Package (Women's Cut) .
Visit one of these links to claim your gift. The listed price is a placeholder that will be negated by the coupon. <% else %> 🎟 Level 2 Sticker Gift (one time use): <%= CouponGenerator.new(current_user.id, "sticker_pack").generate %>

👆 This coupon will give you 100% off THE MEMBERS-ONLY STICKER PACK .
Visit link to claim your gift. The listed price is a placeholder that will be negated by the coupon. <% end %>


<% end %> <% end %>

Want to change your membership level?

<%= form_tag "/stripe_subscriptions/current_user", method: :patch do %>
<%= label_tag :amount, "Monthly Contribution ($):", style: "width: 100%;" %> <%= number_field_tag :amount, current_user.monthly_dues / 100.0, class: "amount-input", step: "any", min: "1" %>
<%= submit_tag "SUBMIT", class: "cta" %>
<% end %>


<%= form_tag "/stripe_subscriptions/current_user", method: :delete, onsubmit: "return confirm('Are you absolutely sure you want to perform this action?');" do %>
Don't want to keep your membership?
<% end %>