i am new in nw.js and currently i am developing and sample app in nw.js. I downloaded nw.js 64bit and create an small login page and its working perfect. But when i login once it saves my login details and never removes even i restart my app many times but my details are still there.
can any one tell me how i can prevent nw.js chromium to save my login details.
MyCode:
<form method="POST" action="example.html" id="loginNow" autocomplete="nope">
<div class="login-card" style="margin-top: 10%;">
<h1>Log-in</h1><br>
<select name="usertype" style="width:100%; font-size: 13px; min-height: 30px; margin-bottom:3.5%;">
<option>Select User Type</option>
<option value="rps">RPS</option>
<option value="gd">Godown</option>
</select>
<input type="text" name="username" placeholder="Username" id="username" value="" autocomplete="nope">
<input type="password" name="password" placeholder="Password" id="password" value="" autocomplete="nope">
<input type="submit" name="login" class="login login-submit" value="login" id="loginBut">
<div class="login-help">
<a href="#">Forgot Password</a>
<a href="javascript:;" target="_blank" id="wind">Switch To Online</a>
</div>