how to create encrypt password in browser level for Mendix application

0
how to create encrypt password in browser level for Mendix application. Step 1: login to the application and logout. Step 2: take the dump of that browser on which the application was opened. The browser service is opened from task manager. Step 3: open the dump file with hex file opener. Step 4: search for the password in that dump. We can see the password.   We are able see password while we are provide to login. So we are not able encrypt this in bowser level. For Login page, we are using html code as below.   <div class="login-container">             <form id="loginForm" class="login-form" class="alert alert-danger login-message">                 <div class="form-group">                         <label id="passwordLabel" for="passwordInput">Password</label>                         <input id="passwordInput" class="form-control" type="password" encrypt="bcrypt" salt="abc..." rounds="4" placeholder="Password" autocorrect="off" autocapitalize="none">                     </div>   </div>             </form>         </div>    
asked
0 answers