Advertisement
Guest User

change passw

a guest
Sep 18th, 2014
167
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 2.64 KB | None | 0 0
  1. <% if (modalId == 'edit-account') { %>
  2.           <div class="form-group">
  3.             <label class="col-sm-2 control-label"
  4.                  for="user_password">
  5.                   New Password
  6.             </label>
  7.  
  8.             <div class="col-sm-5">
  9.                 <input class="form-control" id="user_password"
  10.                       name="user[password]" type="password"
  11.                       value="" autocomplete="off">
  12.             </div>
  13.             <i  class="col-sm-6">(leave blank if you don't want to change it)</i>
  14.           </div>
  15.  
  16.           <div class="form-group">
  17.             <label class="col-sm-2 control-label"
  18.                   for="user_password_confirmation">
  19.                 New password Confirmation
  20.             </label>
  21.  
  22.             <div class="col-sm-5">
  23.                 <input class="form-control" id="user_password_confirmation"
  24.                       name="user[password_confirmation]" type="password"
  25.                       value="">
  26.             </div>
  27.           </div>
  28.  
  29.           <div class="form-group">
  30.               <label class="col-sm-2 control-label"
  31.                     for="user_current_password">
  32.                   Current password
  33.               </label>
  34.               <div class="col-sm-5">
  35.                   <input class="form-control" id="user_current_password"
  36.                         name="user[current_password]" type="password"
  37.                         value="">
  38.               </div>
  39.               <i  class="col-sm-6">
  40.                 (we need your current password to confirm your changes)
  41.               </i>
  42.           </div>
  43.  
  44.           <p>
  45.             <a href="/token_authentications?company_id=evo&amp;user_id=271"
  46.            data-confirm="Are you sure?" data-method="post" rel="nofollow">
  47.               Generate Token
  48.             </a>
  49.             <a href="/token_authentications/271?company_id=evo"
  50.            data-confirm="Are you sure?" data-method="delete" rel="nofollow">
  51.               Delete Token
  52.             </a>
  53.           </p>
  54.           <p>
  55.             "You can use this url to login"
  56.             <br>
  57.             <a href="http://wwf.evozon.com/?auth_token=7yXzuTb1wRiUgyFqCfsA">
  58.               http://wwf.evozon.com/?auth_token=7yXzuTb1wRiUgyFqCfsA
  59.             </a>
  60.           </p>
  61.         <% } %>
  62.  
  63.         <% if (modalId == 'edit-account') { %>
  64.         <ul class="list-unstyled clearfix group-btn-options">
  65.           <li>Unhappy? </li>
  66.           <li>
  67.             <a href="/users?company_id=evo" data-confirm="Are you sure?"
  68.            data-method="delete" rel="nofollow">
  69.               Cancel my account
  70.             </a>
  71.           </li>
  72.         </ul>
  73.       <% } %>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement