2020-03-06 12:11:38 +03:00
|
|
|
<div class="max-w-md w-full mx-auto bg-white shadow-md rounded px-8 py-6 mb-4 mt-8">
|
|
|
|
<h2 class="text-xl font-black">Change subscription plan</h2>
|
2019-09-02 14:29:19 +03:00
|
|
|
|
2020-03-06 12:11:38 +03:00
|
|
|
<div class="py-4">
|
2019-09-02 14:29:19 +03:00
|
|
|
If you choose to change your plan, your current subscription will
|
|
|
|
be prorated.
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="w-full flex justify-between items-center py-4 border-t">
|
|
|
|
<span><b>10,000</b> / mo</span>
|
2020-03-06 12:11:38 +03:00
|
|
|
<b class="bg-orange-200 text-orange-900 p-1 rounded-sm">$6 / mo</b>
|
2019-09-02 14:29:19 +03:00
|
|
|
<%= if Plausible.Billing.Plans.is?(@subscription, :personal) do %>
|
|
|
|
<div>
|
2020-03-06 12:11:38 +03:00
|
|
|
<svg class="feather text-green-500"><use xlink:href="#feather-check-circle" /></svg>
|
2019-09-02 14:29:19 +03:00
|
|
|
Selected
|
|
|
|
</div>
|
|
|
|
<% else %>
|
|
|
|
<%= button("Select", class: "button button-sm", method: :post, to: "/billing/change-plan/personal") %>
|
|
|
|
<% end %>
|
|
|
|
</div>
|
|
|
|
<div class="w-full flex justify-between items-center py-4 border-t">
|
|
|
|
<span><b>100,000</b> / mo</span>
|
2020-03-06 12:11:38 +03:00
|
|
|
<b class="bg-orange-200 text-orange-900 p-1 rounded-sm">$12 / mo</b>
|
2019-09-02 14:29:19 +03:00
|
|
|
<%= if Plausible.Billing.Plans.is?(@subscription, :startup) do %>
|
|
|
|
<div>
|
2020-03-06 12:11:38 +03:00
|
|
|
<svg class="feather text-green-500"><use xlink:href="#feather-check-circle" /></svg>
|
2019-09-02 14:29:19 +03:00
|
|
|
Selected
|
|
|
|
</div>
|
|
|
|
<% else %>
|
|
|
|
<%= button("Select", class: "button button-sm", method: :post, to: "/billing/change-plan/startup") %>
|
|
|
|
<% end %>
|
|
|
|
</div>
|
|
|
|
<div class="w-full flex justify-between items-center py-4 border-t">
|
|
|
|
<span><b>1,000,000</b> / mo</span>
|
2020-03-06 12:11:38 +03:00
|
|
|
<b class="bg-orange-200 text-orange-900 p-1 rounded-sm">$36 / mo</b>
|
2019-09-02 14:29:19 +03:00
|
|
|
<%= if Plausible.Billing.Plans.is?(@subscription, :business) do %>
|
|
|
|
<div>
|
2020-03-06 12:11:38 +03:00
|
|
|
<svg class="feather text-green-500"><use xlink:href="#feather-check-circle" /></svg>
|
2019-09-02 14:29:19 +03:00
|
|
|
Selected
|
|
|
|
</div>
|
|
|
|
<% else %>
|
|
|
|
<%= button("Select", class: "button button-sm", method: :post, to: "/billing/change-plan/business") %>
|
|
|
|
<% end %>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<script type="text/javascript" src="https://cdn.paddle.com/paddle/paddle.js"></script>
|
|
|
|
<script type="text/javascript" src="<%= Routes.static_path(@conn, "/js/checkout.js") %>"></script>
|
|
|
|
<script type="text/javascript" src="<%= Routes.static_path(@conn, "/js/app.js") %>"></script>
|
|
|
|
<script>
|
|
|
|
window.Checkout.init(
|
|
|
|
<%= @conn.assigns[:current_user].id %>,
|
|
|
|
'<%= @conn.assigns[:current_user].email %>'
|
|
|
|
)
|
|
|
|
</script>
|
|
|
|
|
|
|
|
</div>
|