Skip to content

Commit

Permalink
Merge pull request #7945 from josiasds/fix-account-profile-placeholders
Browse files Browse the repository at this point in the history
[FIX] Fix placeholders in account profile
  • Loading branch information
rodrigok committed Aug 30, 2017
1 parent fc3fd84 commit faf4f19
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/rocketchat-ui-account/client/accountProfile.html
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ <h2 style="flex: 1 1; white-space: nowrap;">{{_ "My Profile"}}</h2>
<label class="rc-input__label">
<div class="rc-input__title">{{_ "Email"}}</div>
<div class="rc-input__wrapper">
<input name="email" type="text" class="rc-input__element" placeholder="Type channel name" value="{{email}}" autocomplete="false" {{ifThenElse canChange '' 'disabled'}}>
<input name="email" type="text" class="rc-input__element" placeholder="Type email" value="{{email}}" autocomplete="false" {{ifThenElse canChange '' 'disabled'}}>
</div>
</label>
{{# unless canChange}}
Expand All @@ -112,7 +112,7 @@ <h2 style="flex: 1 1; white-space: nowrap;">{{_ "My Profile"}}</h2>
<label class="rc-input__label">
<div class="rc-input__title">{{_ "New_password"}}</div>
<div class="rc-input__wrapper">
<input name="password" type="password" class="rc-input__element" placeholder="Type channel name" autocomplete="new-password" {{ifThenElse canChange '' 'disabled'}}>
<input name="password" type="password" class="rc-input__element" placeholder="Type new password" autocomplete="new-password" {{ifThenElse canChange '' 'disabled'}}>
</div>
</label>
{{# unless canChange}}
Expand Down

0 comments on commit faf4f19

Please sign in to comment.