fix: auto complete for api secret

pull/36/head
sualko 2020-05-17 12:29:05 +02:00
parent a1ec50994e
commit 6587b53246
1 changed files with 1 additions and 1 deletions

View File

@ -10,7 +10,7 @@ script('bbb', 'admin');
<form>
<input type="url" name="api.url" value="<?php p($_['api.url']); ?>" placeholder="<?php p($l->t('API url')); ?>" pattern="https://.*" />
<input type="password" name="api.secret" value="<?php p($_['api.secret']); ?>" placeholder="<?php p($l->t('API secret')); ?>" />
<input type="password" name="api.secret" value="<?php p($_['api.secret']); ?>" placeholder="<?php p($l->t('API secret')); ?>" autocomplete="new-password" />
<input type="submit" value="<?php p($l->t('Save')); ?>" />
</form>
</div>