Skip to content

Commit

Permalink
improv: add autocomplete=off on smtp configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
Eywek committed May 13, 2018
1 parent 9bdb467 commit c2ab8e2
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions app/View/Configuration/admin_index.ctp
Original file line number Diff line number Diff line change
Expand Up @@ -484,7 +484,8 @@
'type' => 'text',
'name' => 'smtpHost',
'class' => 'form-control',
'value' => $config['smtpHost']
'value' => $config['smtpHost'],
'autocomplete' => 'off'
)); ?>
</div>

Expand All @@ -495,7 +496,8 @@
'type' => 'text',
'name' => 'smtpUsername',
'class' => 'form-control',
'value' => $config['smtpUsername']
'value' => $config['smtpUsername'],
'autocomplete' => 'off'
)); ?>
</div>

Expand All @@ -506,7 +508,8 @@
'type' => 'text',
'name' => 'smtpPort',
'class' => 'form-control',
'value' => $config['smtpPort']
'value' => $config['smtpPort'],
'autocomplete' => 'off'
)); ?>
</div>

Expand All @@ -517,7 +520,8 @@
'type' => 'password',
'name' => 'smtpPassword',
'class' => 'form-control',
'value' => $config['smtpPassword']
'value' => $config['smtpPassword'],
'autocomplete' => 'off'
)); ?>
</div>

Expand Down

0 comments on commit c2ab8e2

Please sign in to comment.