Hide password when entering

This commit is contained in:
SinTan1729
2023-04-11 19:17:04 -05:00
parent d22d88b985
commit abe8238713
2 changed files with 54 additions and 27 deletions

View File

@@ -23,7 +23,7 @@
<body>
<div class="container">
<div class="container" id="container">
<form class="pure-form pure-form-aligned" name="new-url-form">
<fieldset>
<legend id="logo"><img src="assets/favicon-32.png" width="26px" alt="logo"> Simply Shorten</legend>
@@ -65,6 +65,15 @@
<a href="https://github.com/SinTan1729/simply-shorten" target="_blank" rel="noopener noreferrer">Source Code</a>
</div>
<dialog id="login-dialog">
<form class="pure-form" name="login-form">
<p>Please enter password to access this website</p>
<input type="password" id="password" />
<button class="pure-button pure-button-primary" value="default">Submit</button>
<p id="wrong-pass">&nbsp;</p>
</form>
</dialog>
</body>
</html>