Skip to content

Commit

Permalink
yolo
Browse files Browse the repository at this point in the history
  • Loading branch information
MaxGripe committed Jul 4, 2024
1 parent 160f302 commit e6e14d0
Show file tree
Hide file tree
Showing 5 changed files with 35 additions and 7 deletions.
5 changes: 5 additions & 0 deletions .idea/.gitignore

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 12 additions & 0 deletions .idea/0password.github.io.iml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 8 additions & 0 deletions .idea/modules.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions .idea/vcs.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

11 changes: 4 additions & 7 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -289,11 +289,12 @@ <h1>0Password <= 0!</h1>
<form id="form0" action="" method="get" autocomplete="off">
<div>
<label for="0Password">Password that only you know (0Password)</label>
<input id="0Password" name="0Password" type="password" autocomplete="off" required /><br />
<input id="0Password" tabindex="1" name="0Password" type="password" autocomplete="off" required
autofocus /><br />
</div>
<div>
<label for="Service">Service</label>
<input id="Service" name="Service" type="text" autocomplete="off" required />
<input id="Service" tabindex="2" name="Service" type="text" autocomplete="off" required />
<span>Examples: <em>github, gmail, ...</em></span>
</div>
<div>
Expand Down Expand Up @@ -326,7 +327,7 @@ <h1>0Password <= 0!</h1>
</div>
<div>
<label for="Result">Ta-Da! Your Password</label>
<input id="Result" name="Result" type="text" autocomplete="off" /><br />
<input id="Result" tabindex="3" name="Result" type="text" value="" autocomplete="off" /><br />
</div>
</form>
<footer>
Expand All @@ -349,10 +350,6 @@ <h1>0Password <= 0!</h1>
var password = ZeroPassword.compute(keyword, service, length, upperCase, lowerCase, numbers, specialChars);
document.getElementById("Result").value = password;
});

document.getElementById("Result").addEventListener("keydown", function (e) {
e.preventDefault();
});
</script>
</body>

Expand Down

0 comments on commit e6e14d0

Please sign in to comment.