mirror of
https://github.com/bitwarden/browser
synced 2025-12-29 14:43:31 +00:00
* [EC-1046] add activate autofill policy to web * [EC-1046] add local setting if policy needs to be set * [AC-1046] activate autofill on page load if flag exists * [AC-1046] move activation to current tab page * [AC-1046] add warning to autofill policy * [AC-1046] add useActivateAutofillPolicy to organization reponse * [AC-1046] autofill to auto-fill
20 lines
508 B
HTML
20 lines
508 B
HTML
<app-callout type="warning">
|
|
{{ "experimentalFeature" | i18n }}
|
|
<a href="https://bitwarden.com/help/auto-fill-browser/" target="_blank" rel="noopener">{{
|
|
"learnMoreAboutAutofill" | i18n
|
|
}}</a>
|
|
</app-callout>
|
|
|
|
<div class="form-group">
|
|
<div class="form-check">
|
|
<input
|
|
class="form-check-input"
|
|
type="checkbox"
|
|
id="enabled"
|
|
[formControl]="enabled"
|
|
name="Enabled"
|
|
/>
|
|
<label class="form-check-label" for="enabled">{{ "turnOn" | i18n }}</label>
|
|
</div>
|
|
</div>
|