mirror of
https://github.com/hashicorp/vault.git
synced 2025-08-22 07:01:09 +02:00
31 lines
902 B
Handlebars
31 lines
902 B
Handlebars
{{!
|
|
Copyright (c) HashiCorp, Inc.
|
|
SPDX-License-Identifier: BUSL-1.1
|
|
}}
|
|
|
|
{{#if this.didCancel}}
|
|
<h3 class="title is-3" data-test-consent-title>
|
|
Consent Not Given
|
|
</h3>
|
|
<div class="box">
|
|
<p class="has-bottom-margin-l has-top-margin-l">Login attempt has been terminated.</p>
|
|
</div>
|
|
{{else}}
|
|
<h3 class="title is-3" data-test-consent-title>
|
|
Consent
|
|
</h3>
|
|
<form class="box" {{on "submit" this.handleSubmit}} data-test-consent-form>
|
|
<p class="has-bottom-margin-s">
|
|
In order to complete the login process, you must consent to Vault sharing your profile, email, address, and phone with
|
|
the client.
|
|
</p>
|
|
<p class="has-bottom-margin-s">Do you want to continue?</p>
|
|
<FormSaveButtons
|
|
@saveButtonText="Yes"
|
|
@isSaving={{false}}
|
|
@cancelButtonText="No"
|
|
@onCancel={{this.handleCancel}}
|
|
@includeBox={{false}}
|
|
/>
|
|
</form>
|
|
{{/if}} |