Skip to content

Commit

Permalink
Merge pull request #30 from mendix/Autocomplete-issue
Browse files Browse the repository at this point in the history
Fixed Caching & Autocompletion issue
  • Loading branch information
wegiswes authored Feb 8, 2019
2 parents 7f2b1e5 + 7e1ed8f commit 06744d3
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion components.json
Original file line number Diff line number Diff line change
@@ -1 +1 @@
{"files":{"css":["lib/bootstrap/css/bootstrap.min.css","mxclientsystem/mxui/ui/mxui.css","styles/css/lib/lib.css","styles/css/custom/custom.css"],"js":["mxclientsystem/mxui/mxui.js"]},"cachebust":"635689412670032000"}
{"files":{"css":["lib/bootstrap/css/bootstrap.min.css","mxclientsystem/mxui/ui/mxui.css","styles/css/lib/lib.css","styles/css/custom/custom.css"],"js":["mxclientsystem/mxui/mxui.js"]},"cachebust":"{{cachebust}}"}
6 changes: 3 additions & 3 deletions login-with-sso.html
Original file line number Diff line number Diff line change
Expand Up @@ -19,20 +19,20 @@
<div class="loginpage-right">
<div class="loginpage-formwrapper">
<h2>Sign in</h2>
<form id="loginForm" class="loginpage-form">
<form id="loginForm" class="loginpage-form" autocomplete="off">
<div>
<div id="loginMessage" class="alert alert-danger"></div>
<div class="form-group">
<label id="usernameLabel" for="usernameInput">User name</label>
<div class="inputwrapper">
<input id="usernameInput" class="form-control" type="text" placeholder="User name" autocorrect="off" autocapitalize="none">
<input id="usernameInput" class="form-control" type="text" placeholder="User name" autocorrect="off" autocomplete="off" autocapitalize="none">
<span class="glyphicon glyphicon-user"></span>
</div>
</div>
<div class="form-group">
<label id="passwordLabel" for="passwordInput">Password</label>
<div class="inputwrapper">
<input id="passwordInput" class="form-control" type="password" placeholder="Password" autocorrect="off" autocapitalize="none">
<input id="passwordInput" class="form-control" type="password" placeholder="Password" autocorrect="off" autocomplete="off" autocapitalize="none">
<span class="glyphicon glyphicon-eye-close"></span>
</div>
</div>
Expand Down
6 changes: 3 additions & 3 deletions login.html
Original file line number Diff line number Diff line change
Expand Up @@ -19,20 +19,20 @@
<div class="loginpage-right">
<div class="loginpage-formwrapper">
<h2>Sign in</h2>
<form id="loginForm" class="loginpage-form">
<form id="loginForm" class="loginpage-form" autocomplete="off">
<div>
<div id="loginMessage" class="alert alert-danger"></div>
<div class="form-group">
<label id="usernameLabel" for="usernameInput">User name</label>
<div class="inputwrapper">
<input id="usernameInput" class="form-control" type="text" placeholder="User name" autocorrect="off" autocapitalize="none">
<input id="usernameInput" class="form-control" type="text" placeholder="User name" autocorrect="off" autocomplete="off" autocapitalize="none">
<span class="glyphicon glyphicon-user"></span>
</div>
</div>
<div class="form-group">
<label id="passwordLabel" for="passwordInput">Password</label>
<div class="inputwrapper">
<input id="passwordInput" class="form-control" type="password" placeholder="Password" autocorrect="off" autocapitalize="none">
<input id="passwordInput" class="form-control" type="password" placeholder="Password" autocorrect="off" autocomplete="off" autocapitalize="none">
<span class="glyphicon glyphicon-eye-close"></span>
</div>
</div>
Expand Down

0 comments on commit 06744d3

Please sign in to comment.