summaryrefslogtreecommitdiffstats
path: root/packages/meteor-useraccounts-core/lib/templates_helpers/ensure_signed_in.html
blob: 08c0d7e3ed19039977c7c1b1fcf76455d79934c6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
<!-- Template level auth -->
<template name="ensureSignedIn">
  {{#if signedIn}}
    {{> Template.dynamic template=template}}
  {{else}}
    {{#if auth}}
      {{> Template.dynamic template=auth}}
    {{else}}
      {{> fullPageAtForm}}
    {{/if}}
  {{/if}}
</template>