Skip to content

Commit

Permalink
made the token input a password input
Browse files Browse the repository at this point in the history
  • Loading branch information
niuage committed Nov 19, 2015
1 parent a5968e8 commit 226b3b8
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion app/app.html
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ <h2>Log monitoring</h2>
<form>
<label>Auth Token</label>
<p class="hint">Get your token on pathofmaps.com.</p>
<input type="text" name="token" value="<%= token %>" placeholder="Enter your auth token here" data-token-input>
<input type="password" name="token" value="<%= token %>" placeholder="Enter your auth token here" data-token-input>

<label>Charater names</label>
<p class="hint">Only the commands sent from these characters will be sent to pathofmaps.com.</p>
Expand Down
4 changes: 2 additions & 2 deletions app/stylesheets/main.less
Original file line number Diff line number Diff line change
Expand Up @@ -63,13 +63,13 @@ label {
font-weight: bold;
}

input[type="text"], textarea {
input[type="text"], input[type="password"], textarea {
margin-bottom: 2em;
width: 100%;
font-size: 0.875em;
}

input[type="text"] {
input[type="text"], input[type="password"] {
height: 2em;
}

Expand Down

0 comments on commit 226b3b8

Please sign in to comment.