18 lines
650 B
Handlebars
18 lines
650 B
Handlebars
<section id="user-account">
|
|
{{#if this.setupInProgress}}
|
|
Connecting account...
|
|
{{else}}
|
|
{{#if (and this.kredits.hasAccounts this.kredits.currentUser)}}
|
|
{{this.kredits.currentUser.name}}
|
|
{{#if this.kredits.currentUserIsCore}}
|
|
<span class="core-flag">(core)</span>
|
|
{{/if}}
|
|
{{else}}
|
|
<span class="anonymous">Anonymous</span>
|
|
<button onclick={{action "signup"}} class="small" type="button">Sign up</button>
|
|
{{#if this.showConnectButton}}
|
|
<button onclick={{action "connectAccount"}} class="small green" type="button">Connect account</button>
|
|
{{/if}}
|
|
{{/if}}
|
|
{{/if}}
|
|
</section> |