Browse Source

Merge pull request #462 from Klikini/develop

Allow browser to save passwords
Tobias Reich 8 years ago
parent
commit
642d145509
1 changed files with 2 additions and 2 deletions
  1. 2 2
      src/scripts/lychee.js

+ 2 - 2
src/scripts/lychee.js

@@ -115,10 +115,10 @@ lychee.login = function(data) {
 lychee.loginDialog = function() {
 
 	let msg = lychee.html`
-	          <p class='signIn'>
+	          <form class='signIn' action='#'>
 	              <input class='text' name='username' autocomplete='username' type='text' value='' placeholder='username' autocapitalize='off' autocorrect='off'>
 	              <input class='text' name='password' autocomplete='current-password' type='password' value='' placeholder='password'>
-	          </p>
+	          </form>
 	          <p class='version'>Lychee $${ lychee.version }<span> &#8211; <a target='_blank' href='$${ lychee.updateURL }'>Update available!</a><span></p>
 	          `