d93c92e4f5
* add NavHeader component * use NavHeader in SplashPage component and application.hbs * let download button take a block * add RadialProgress component * use RadialProgress in ShamirFlow component * style up the RadialProgress component * update ember-basic-dropdown, ember-basic-dropdown-hover * rework operation token generation workflow * directly depend on ember-maybe-in-element
23 lines
585 B
Handlebars
23 lines
585 B
Handlebars
{{!-- {{i-con glyph="unlocked" size=20}} {{capitalize model.name}} is {{if model.unsealed 'unsealed' 'sealed'}} --}}
|
|
<SplashPage as |Page|>
|
|
<Page.header>
|
|
<h1 class="title is-3">
|
|
Sign in to Vault
|
|
</h1>
|
|
</Page.header>
|
|
<Page.content>
|
|
<AuthForm
|
|
@cluster={{model}}
|
|
@redirectTo={{redirectTo}}
|
|
@selectedAuthType={{with}}
|
|
/>
|
|
</Page.content>
|
|
<Page.footer>
|
|
<div class="has-short-padding">
|
|
<p class="help has-text-grey-dark">
|
|
Contact your administrator for login credentials
|
|
</p>
|
|
</div>
|
|
</Page.footer>
|
|
</SplashPage>
|