Commit 00b1908f by utkarshcmu

Hiding password text

parent e73e7aea
...@@ -9,17 +9,17 @@ ...@@ -9,17 +9,17 @@
<form name="userForm" class="gf-form-group"> <form name="userForm" class="gf-form-group">
<div class="gf-form"> <div class="gf-form">
<span class="gf-form-label width-10">Old Password</span> <span class="gf-form-label width-10">Old Password</span>
<input class="gf-form-input max-width-21" type="text" required ng-model="command.oldPassword"> <input class="gf-form-input max-width-21" type="password" required ng-model="command.oldPassword">
</div> </div>
<div class="gf-form"> <div class="gf-form">
<span class="gf-form-label width-10">New Password</span> <span class="gf-form-label width-10">New Password</span>
<input class="gf-form-input max-width-21" type="text" required ng-minlength="4" ng-model="command.newPassword"> <input class="gf-form-input max-width-21" type="password" required ng-minlength="4" ng-model="command.newPassword">
</div> </div>
<div class="gf-form"> <div class="gf-form">
<span class="gf-form-label width-10">Confirm Password</span> <span class="gf-form-label width-10">Confirm Password</span>
<input class="gf-form-input max-width-21" type="text" required ng-minlength="4" ng-model="command.confirmNew"> <input class="gf-form-input max-width-21" type="password" required ng-minlength="4" ng-model="command.confirmNew">
</div> </div>
<div class="gf-form-button-row"> <div class="gf-form-button-row">
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment