Add help link for password reprompt

(cherry picked from commit a7dda43d65)
This commit is contained in:
Hinton 2021-06-21 13:16:48 +02:00
parent d5add32d35
commit 34d6447bf9
1 changed files with 7 additions and 1 deletions

View File

@ -291,7 +291,13 @@
<input id="favorite" type="checkbox" name="Favorite" [(ngModel)]="cipher.favorite">
</div>
<div class="box-content-row box-content-row-checkbox" appBoxRow>
<label for="passwordPrompt">{{'passwordPrompt' | i18n}}</label>
<label for="passwordPrompt">
{{'passwordPrompt' | i18n}}
<a target="_blank" rel="noopener" appA11yTitle="{{'learnMore' | i18n}}"
href="https://bitwarden.com/help/article/managing-items/#protect-individual-items">
<i class="fa fa-question-circle-o" aria-hidden="true"></i>
</a>
</label>
<input id="passwordPrompt" type="checkbox" name="PasswordPrompt" [ngModel]="reprompt"
(change)="repromptChanged()">
</div>