Skip to content

Commit

Permalink
#50 - Tracer password input fields should hide chars
Browse files Browse the repository at this point in the history
  • Loading branch information
davidjgonzalez committed May 25, 2017
1 parent 91ef3d0 commit 581fd99
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 7 deletions.
7 changes: 5 additions & 2 deletions assets/stylesheets/options.css
Original file line number Diff line number Diff line change
Expand Up @@ -36,14 +36,17 @@ label p {
font-weight: normal;
}

.form-options input[type=text] {
.form-options input[type=text],
.form-options input[type=password] {

width: 100%;
padding: 1rem;
}


.host-options ul li input[type=text],
.host-options ul li input[type=password] {

.host-options ul li input[type=text] {
width: 60%;
}

Expand Down
15 changes: 10 additions & 5 deletions options.html
Original file line number Diff line number Diff line change
Expand Up @@ -57,17 +57,22 @@ <h3>Default Options</h3>
Servlet context
<br/>
<input type="text" ng-model="options.servletContext"/>
</label>
</label>

<p>
Note that existing login-tokens associated w/ the tab's host will override these settings.
</p>

<label class="text">
Web console user
<br/>
<input type="text" ng-model="options.user"/>
</label>
</label>
<label class="text">
Web console password
<br/>
<input type="text" ng-model="options.password"/>
</label>
<input type="password" ng-model="options.password"/>
</label>
</form>

<h3>Host Configurations</h3>
Expand Down Expand Up @@ -115,7 +120,7 @@ <h3>Host Configurations</h3>
<label class="text">
Web console password
<br/>
<input type="text" ng-model="tabHostOption.password"/>
<input type="password" ng-model="tabHostOption.password"/>
</label>

<button ng-click="options.tabHostOptions.splice($index, 1)">Remove this Host Configuration</button>
Expand Down

0 comments on commit 581fd99

Please sign in to comment.