Skip to content

Commit

Permalink
changed form-fields for secrets to be password-fields
Browse files Browse the repository at this point in the history
  • Loading branch information
ralfhergert committed Dec 11, 2017
1 parent 6e5ad02 commit 0a334b9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/resources/settings.template.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
</div>
<div class="form_item_block">
<label for="octane-gocd-plugin-client-secret">Client Secret<span class="asterisk">*</span></label>
<input id="octane-gocd-plugin-client-secret" ng-model="clientSecret" type="text"/>
<input id="octane-gocd-plugin-client-secret" ng-model="clientSecret" type="password"/>
<span class="form_error" ng-show="GOINPUTNAME[clientSecret].$error.server">{{GOINPUTNAME[clientSecret].$error.server}}</span>
</div>
<div class="form_item_block">
Expand All @@ -21,6 +21,6 @@
</div>
<div class="form_item_block">
<label for="octane-gocd-plugin-go-api-password">Go API Password<span class="asterisk">*</span></label>
<input id="octane-gocd-plugin-go-api-password" ng-model="goPassword" type="text"/>
<input id="octane-gocd-plugin-go-api-password" ng-model="goPassword" type="password"/>
<span class="form_error" ng-show="GOINPUTNAME[goPassword].$error.server">{{GOINPUTNAME[goPassword].$error.server}}</span>
</div>

0 comments on commit 0a334b9

Please sign in to comment.