Blake Erickson e132913db4
FIX: Login required for Stripe Checkout (#209)
If an anonymous user tries to subscribe we need to show them a log in
message first. We currently don't have support for anonymous
subscriptions.
2024-05-03 17:01:51 -06:00

7 lines
126 B
Handlebars

<div class="container">
{{#if this.currentUser}}
{{this.pricingTable}}
{{else}}
<LoginRequired />
{{/if}}
</div>