203 lines
		
	
	
		
			11 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			203 lines
		
	
	
		
			11 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
{% include 'header.html' %}
 | 
						|
<div class="container mx-auto">
 | 
						|
 <section class="p-5 mt-5">
 | 
						|
  <div class="flex flex-wrap items-center -m-2">
 | 
						|
   <div class="w-full md:w-1/2 p-2">
 | 
						|
    <ul class="flex flex-wrap items-center gap-x-3 mb-2">
 | 
						|
     <li>
 | 
						|
      <a class="flex font-medium text-xs text-coolGray-500 dark:text-gray-300 hover:text-coolGray-700" href="/">
 | 
						|
       <p>Home</p>
 | 
						|
      </a>
 | 
						|
     </li>
 | 
						|
     <li>
 | 
						|
      <svg width="6" height="15" viewBox="0 0 6 15" fill="none" xmlns="http://www.w3.org/2000/svg">
 | 
						|
       <path d="M5.34 0.671999L2.076 14.1H0.732L3.984 0.671999H5.34Z" fill="#BBC3CF"></path>
 | 
						|
      </svg>
 | 
						|
     </li>
 | 
						|
     <li>
 | 
						|
      <a class="flex font-medium text-xs text-coolGray-500 dark:text-gray-300 hover:text-coolGray-700" href="/wallets">
 | 
						|
       <p>Home</p>
 | 
						|
      </a>
 | 
						|
     </li>
 | 
						|
     <li>
 | 
						|
      <svg width="6" height="15" viewBox="0 0 6 15" fill="none" xmlns="http://www.w3.org/2000/svg">
 | 
						|
       <path d="M5.34 0.671999L2.076 14.1H0.732L3.984 0.671999H5.34Z" fill="#BBC3CF"></path>
 | 
						|
      </svg>
 | 
						|
     </li>
 | 
						|
     <li>
 | 
						|
      <a class="flex font-medium text-xs text-coolGray-500 dark:text-gray-300 hover:text-coolGray-700" href="/changepassword">Change Password</a>
 | 
						|
     </li>
 | 
						|
     <li>
 | 
						|
      <svg width="6" height="15" viewBox="0 0 6 15" fill="none" xmlns="http://www.w3.org/2000/svg">
 | 
						|
       <path d="M5.34 0.671999L2.076 14.1H0.732L3.984 0.671999H5.34Z" fill="#BBC3CF"></path>
 | 
						|
      </svg>
 | 
						|
     </li>
 | 
						|
    </ul>
 | 
						|
   </div>
 | 
						|
  </div>
 | 
						|
 </section>
 | 
						|
 <section class="py-4">
 | 
						|
  <div class="container px-4 mx-auto">
 | 
						|
   <div class="relative py-11 px-16 bg-coolGray-900 dark:bg-blue-500 rounded-md overflow-hidden">
 | 
						|
    <img class="absolute z-10 left-4 top-4" src="/static/images/elements/dots-red.svg" alt="">
 | 
						|
    <img class="absolute z-10 right-4 bottom-4" src="/static/images/elements/dots-red.svg" alt="">
 | 
						|
    <img class="absolute h-64 left-1/2 top-1/2 transform -translate-x-1/2 -translate-y-1/2 object-cover" src="/static/images/elements/wave.svg" alt="">
 | 
						|
    <div class="relative z-20 flex flex-wrap items-center -m-3">
 | 
						|
     <div class="w-full md:w-1/2 p-3">
 | 
						|
      <h2 class="mb-6 text-4xl font-bold text-white tracking-tighter">Change Password</h2>
 | 
						|
      <p class="font-normal text-coolGray-200 dark:text-white">Update your BasicSwap / Wallets password.</p>
 | 
						|
     </div>
 | 
						|
    </div>
 | 
						|
   </div>
 | 
						|
  </div>
 | 
						|
 </section>
 | 
						|
 {% include 'inc_messages.html' %}
 | 
						|
 <section>
 | 
						|
  <div class="pl-6 pr-6 pt-0 pb-0 h-full overflow-hidden">
 | 
						|
   <div class="border-coolGray-100">
 | 
						|
    <div class="flex flex-wrap items-center justify-between -m-2">
 | 
						|
     <div class="w-full pt-2">
 | 
						|
      <div class="container mt-5 mx-auto">
 | 
						|
       <div class="pt-6 pb-8 bg-coolGray-100 dark:bg-gray-500 rounded-xl">
 | 
						|
        <div class="px-6">
 | 
						|
         <div class="w-full mt-6 pb-6 overflow-x-auto">
 | 
						|
          <table class="w-full min-w-max text-sm">
 | 
						|
           <thead class="uppercase">
 | 
						|
            <tr class="text-left">
 | 
						|
             <th class="p-0">
 | 
						|
              <div class="py-3 px-6 rounded-tl-xl bg-coolGray-200 dark:bg-gray-600">
 | 
						|
               <span class="text-xs text-gray-600 dark:text-gray-300 font-semibold">Password</span>
 | 
						|
              </div>
 | 
						|
             </th>
 | 
						|
             <th class="p-0">
 | 
						|
              <div class="py-3 px-6 bg-coolGray-200 dark:bg-gray-600">
 | 
						|
               <span class="text-xs text-gray-600 dark:text-gray-300 font-semibold py-3 px-6"></span>
 | 
						|
              </div>
 | 
						|
             </th>
 | 
						|
            </tr>
 | 
						|
           </thead>
 | 
						|
           <form method="post" autocomplete="off">
 | 
						|
            <tr class="opacity-100 text-gray-500 dark:text-gray-100">
 | 
						|
             <td class="py-3 px-6 bold">Old Password</td>
 | 
						|
             <td td class="py-3 px-6">
 | 
						|
              <div class="relative w-full">
 | 
						|
               <div class="absolute inset-y-0 right-0 flex items-center px-2">
 | 
						|
                <input class="hidden js-password-toggle" id="toggle-old" type="checkbox" />
 | 
						|
                <label class="px-2 py-1 text-sm text-gray-600 font-mono cursor-pointer js-password-label" for="toggle-old" id="input-old-label">
 | 
						|
                 <svg xmlns="http://www.w3.org/2000/svg" height="20" width="20" viewBox="0 0 24 24">
 | 
						|
                  <g fill="#8896ab">
 | 
						|
                   <path d="M23.444,10.239C21.905,8.062,17.708,3,12,3S2.1,8.062.555,10.24a3.058,3.058,0,0,0,0,3.52h0C2.1,15.938,6.292,21,12,21s9.905-5.062,11.445-7.24A3.058,3.058,0,0,0,23.444,10.239ZM12,17a5,5,0,1,1,5-5A5,5,0,0,1,12,17Z" fill="#8896ab"></path>
 | 
						|
                  </g>
 | 
						|
                 </svg>
 | 
						|
                </label>
 | 
						|
               </div>
 | 
						|
               <input class="hover:border-blue-500 bg-gray-50 text-gray-900 appearance-none pr-10 dark:bg-gray-500 dark:text-white border border-gray-300 dark:border-gray-400 dark:text-gray-50 dark:placeholder-gray-50 text-sm rounded-lg outline-none focus:ring-blue-500 focus:border-blue-500 block w-full p-2.5 focus:ring-0" type="password" name="oldpassword" id="input-old">
 | 
						|
              </div>
 | 
						|
             </td>
 | 
						|
            </tr>
 | 
						|
            <tr class="opacity-100 text-gray-500 dark:text-gray-100">
 | 
						|
             <td class="py-3 px-6 bold">New Password</td>
 | 
						|
             <td td class="py-3 px-6">
 | 
						|
              <div class="relative w-full">
 | 
						|
               <div class="absolute inset-y-0 right-0 flex items-center px-2">
 | 
						|
                <input class="hidden js-password-toggle" id="toggle-new" type="checkbox" />
 | 
						|
                <label class="px-2 py-1 text-sm text-gray-600 font-mono cursor-pointer js-password-label" for="toggle-new" id="input-new-label">
 | 
						|
                 <svg xmlns="http://www.w3.org/2000/svg" height="20" width="20" viewBox="0 0 24 24">
 | 
						|
                  <g fill="#8896ab">
 | 
						|
                   <path d="M23.444,10.239C21.905,8.062,17.708,3,12,3S2.1,8.062.555,10.24a3.058,3.058,0,0,0,0,3.52h0C2.1,15.938,6.292,21,12,21s9.905-5.062,11.445-7.24A3.058,3.058,0,0,0,23.444,10.239ZM12,17a5,5,0,1,1,5-5A5,5,0,0,1,12,17Z" fill="#8896ab"></path>
 | 
						|
                  </g>
 | 
						|
                 </svg>
 | 
						|
                </label>
 | 
						|
               </div>
 | 
						|
               <input class="hover:border-blue-500 bg-gray-50 text-gray-900 appearance-none pr-10 dark:bg-gray-500 dark:text-white border border-gray-300 dark:border-gray-400 dark:text-gray-50 dark:placeholder-gray-50 text-sm rounded-lg outline-none focus:ring-blue-500 focus:border-blue-500 block w-full p-2.5 focus:ring-0" type="password" name="newpassword" id="input-new">
 | 
						|
              </div>
 | 
						|
             </td>
 | 
						|
            </tr>
 | 
						|
            <tr class="opacity-100 text-gray-500 dark:text-gray-100">
 | 
						|
             <td class="py-3 px-6 bold">Confirm Password</td>
 | 
						|
             <td td class="py-3 px-6">
 | 
						|
              <div class="relative w-full">
 | 
						|
               <div class="absolute inset-y-0 right-0 flex items-center px-2">
 | 
						|
                <input class="hidden js-password-toggle" id="toggle-conf" type="checkbox" />
 | 
						|
                <label class="px-2 py-1 text-sm text-gray-600 font-mono cursor-pointer js-password-label" for="toggle-conf" id="input-confirm-label">
 | 
						|
                 <svg xmlns="http://www.w3.org/2000/svg" height="20" width="20" viewBox="0 0 24 24">
 | 
						|
                  <g fill="#8896ab">
 | 
						|
                   <path d="M23.444,10.239C21.905,8.062,17.708,3,12,3S2.1,8.062.555,10.24a3.058,3.058,0,0,0,0,3.52h0C2.1,15.938,6.292,21,12,21s9.905-5.062,11.445-7.24A3.058,3.058,0,0,0,23.444,10.239ZM12,17a5,5,0,1,1,5-5A5,5,0,0,1,12,17Z" fill="#8896ab"></path>
 | 
						|
                  </g>
 | 
						|
                 </svg>
 | 
						|
                </label>
 | 
						|
               </div>
 | 
						|
               <input class="hover:border-blue-500 bg-gray-50 text-gray-900 appearance-none pr-10 dark:bg-gray-500 dark:text-white border border-gray-300 dark:border-gray-400 dark:text-gray-50 dark:placeholder-gray-50 text-sm rounded-lg outline-none focus:ring-blue-500 focus:border-blue-500 block w-full p-2.5 focus:ring-0" type="password" name="confirmpassword" id="input-confirm">
 | 
						|
              </div>
 | 
						|
             </td>
 | 
						|
            </tr>
 | 
						|
          </table>
 | 
						|
         </div>
 | 
						|
        </div>
 | 
						|
       </div>
 | 
						|
      </div>
 | 
						|
     </div>
 | 
						|
    </div>
 | 
						|
   </div>
 | 
						|
  </div>
 | 
						|
 </section>
 | 
						|
 <section>
 | 
						|
  <div class="pl-6 pr-6 pt-0 pb-0 h-full overflow-hidden ">
 | 
						|
   <div class="pb-6 ">
 | 
						|
    <div class="flex flex-wrap items-center justify-between -m-2">
 | 
						|
     <div class="w-full pt-2">
 | 
						|
      <div class="container mx-auto">
 | 
						|
       <div class="pt-6 pb-6 bg-coolGray-100 border-t border-gray-100 dark:border-gray-400 dark:bg-gray-500 rounded-bl-xl rounded-br-xl">
 | 
						|
        <div class="px-6">
 | 
						|
         <div class="flex flex-wrap justify-end">
 | 
						|
          <div class="w-full md:w-auto p-1.5 ml-2">
 | 
						|
           <button type="submit" name="unlock" value="Unlock" class="flex flex-wrap justify-center w-full px-4 py-2.5 bg-blue-500 hover:bg-blue-600 font-medium text-sm text-white border border-blue-500 rounded-md shadow-button focus:ring-0 focus:outline-none">
 | 
						|
            <svg class="text-gray-500 w-5 h-5 mr-2" xmlns="http://www.w3.org/2000/svg" height="24" width="24" viewBox="0 0 24 24">
 | 
						|
             <g stroke-linecap="round" stroke-width="2" fill="none" stroke="#ffffff" stroke-linejoin="round">
 | 
						|
              <polyline points=" 6,12 10,16 18,8 " stroke="#ffffff"></polyline>
 | 
						|
              <circle cx="12" cy="12" r="11"></circle>
 | 
						|
             </g>
 | 
						|
            </svg>Apply </button>
 | 
						|
          </div>
 | 
						|
         </div>
 | 
						|
        </div>
 | 
						|
       </div>
 | 
						|
      </div>
 | 
						|
     </div>
 | 
						|
    </div>
 | 
						|
   </div>
 | 
						|
  </div>
 | 
						|
 </section>
 | 
						|
 <input type="hidden" name="formid" value="{{ form_id }}">
 | 
						|
 </form>
 | 
						|
</div>
 | 
						|
</section>
 | 
						|
{% include 'footer.html' %}
 | 
						|
<script>
 | 
						|
function togglePassword(event) {
 | 
						|
    let input_name = 'input-new';
 | 
						|
    if (event.target.id == 'toggle-old') {
 | 
						|
        input_name = 'input-old';
 | 
						|
    } else
 | 
						|
    if (event.target.id == 'toggle-conf') {
 | 
						|
        input_name = 'input-confirm';
 | 
						|
    }
 | 
						|
    const password = document.getElementById(input_name),
 | 
						|
    passwordLabel = document.getElementById(input_name + '-label');
 | 
						|
    if (password.type === 'password') {
 | 
						|
        password.type = 'text';
 | 
						|
        passwordLabel.innerHTML = '<svg xmlns="http://www.w3.org/2000/svg" height="20" width="20" viewBox="0 0 24 24"><g fill="#8896ab"><path d="M23.444,10.239a22.936,22.936,0,0,0-2.492-2.948l-4.021,4.021A5.026,5.026,0,0,1,17,12a5,5,0,0,1-5,5,5.026,5.026,0,0,1-.688-.069L8.055,20.188A10.286,10.286,0,0,0,12,21c5.708,0,9.905-5.062,11.445-7.24A3.058,3.058,0,0,0,23.444,10.239Z" fill="#8896ab"></path><path d="M12,3C6.292,3,2.1,8.062.555,10.24a3.058,3.058,0,0,0,0,3.52h0a21.272,21.272,0,0,0,4.784,4.9l3.124-3.124a5,5,0,0,1,7.071-7.072L8.464,15.536l10.2-10.2A11.484,11.484,0,0,0,12,3Z" fill="#8896ab"></path><path data-color="color-2" d="M1,24a1,1,0,0,1-.707-1.707l22-22a1,1,0,0,1,1.414,1.414l-22,22A1,1,0,0,1,1,24Z"></path></g></svg>';
 | 
						|
    } else {
 | 
						|
        password.type = 'password';
 | 
						|
        passwordLabel.innerHTML = '<svg xmlns="http://www.w3.org/2000/svg" height="20" width="20" viewBox="0 0 24 24"><g fill="#8896ab" ><path d="M23.444,10.239C21.905,8.062,17.708,3,12,3S2.1,8.062.555,10.24a3.058,3.058,0,0,0,0,3.52h0C2.1,15.938,6.292,21,12,21s9.905-5.062,11.445-7.24A3.058,3.058,0,0,0,23.444,10.239ZM12,17a5,5,0,1,1,5-5A5,5,0,0,1,12,17Z" fill="#8896ab"></path></g></svg>';
 | 
						|
    }
 | 
						|
    password.focus();
 | 
						|
}
 | 
						|
 | 
						|
const toggles = ["toggle-old", "toggle-new", "toggle-conf"]
 | 
						|
toggles.forEach(function (toggle_id, index) {
 | 
						|
    document.getElementById(toggle_id).addEventListener('change', togglePassword, false);
 | 
						|
});
 | 
						|
</script>
 | 
						|
</body>
 | 
						|
</html> |