{{!< ../default}}

<div class="gh-page">
    <div class="gh-container">

    {{#if @member.paid}}

        {{!-- Logged in, paying member: Redirect home --}}
        <script>window.location = '{{@site.url}}';</script>

    {{else if @member}}

        {{!-- Logged in, not paying: Check out --}}
        <div class="gh-checkout-form">
            <h1 class="gh-checkout-title">Choose your subscription</h1>
            <p>Unlock full access to {{@site.title}} and see the entire library of members-only content & updates</p>
            <div class="gh-checkout-box">
                <div class="gh-checkout-plan">
                    <header class="gh-checkout-plan-header">
                        <h3>Monthly</h3>
                        <span>$</span><strong>{{@price.monthly}}</strong> / month
                    </header>
                    <div class="gh-checkout-plan-content">
                        <ul>
                            <li>Full access to all private posts</li>
                            <li>Regular updates with new content</li>
                            <li>Support independent publishing</li>
                            <li>Simple, secure card payment</li>
                        </ul>
                        <a class="button primary fit" href="javascript:void(0)" data-members-plan="Monthly">Choose this plan</a>
                    </div>
                </div>
                <div class="gh-checkout-plan">
                    <header class="gh-checkout-plan-header">
                        <h3>Yearly</h3>
                        <span>$</span><strong>{{@price.yearly}}</strong> / year
                    </header>
                    <div class="gh-checkout-plan-content">
                        <ul>
                            <li>Full access to all private posts</li>
                            <li>Regular updates with new content</li>
                            <li>Support independent publishing</li>
                            <li>Simple, secure card payment</li>
                            <li>One easy payment instead of 12!</li>
                        </ul>
                        <a class="button primary fit" href="javascript:void(0)" data-members-plan="Yearly">Choose this plan</a>
                    </div>
                </div>
            </div>
        </div>

    {{else}}

        {{!-- Not logged in: Sign up --}}
        <form class="gh-auth-form" data-members-form="signup">
            <h1 class="gh-auth-title">Signup to {{@site.title}}</h1>
            <p>{{@site.description}}</p>
            <div class="gh-auth-box">
                <input class="gh-input" data-members-email type="email" placeholder="youremail@example.com" required="true" autocomplete="false" autofocus />
                <button class="gh-button gh-button-primary" type="submit">
                    <span class="gh-button-content">Continue</span>
                    <span class="gh-button-loader">{{> "icons/loader"}}</span>
                </button>
            </div>
            <p><small>Already have an account? <a href="/signin/">Sign in</a></small></p>
            <div class="message-success"><strong>Great!</strong> Check your inbox and click the link to confirm your subscription</div>
            <div class="message-error">Please enter a valid email address!</div>
        </form>

    {{/if}}

    </div>
</div>