best i can

This commit is contained in:
Robert
2025-03-10 17:58:38 +00:00
parent 9a5ad29533
commit 409ecbfe8f
5 changed files with 66 additions and 25 deletions
+25 -9
View File
@@ -1,6 +1,3 @@
<div class="button">
<button onclick="redirectToFile()">Back</button>
</div>
<!DOCTYPE html>
<html lang="en">
<head>
@@ -10,13 +7,32 @@
<link rel="stylesheet" href="Pass.css" />
</head>
<body>
<button class="buttonback" onclick="redirectToFile()">Back</button>
<label class="password_label" for="text_input">Password</label>
<input id="text_input" name="text_input" class="password visible" type="text" spellcheck="false">
<input class="password hidden" type="password" enabled>
<img class="left" src="https://raw.githubusercontent.com/Nik439/Images/master/cpc-hide-reveal/hinge.svg" draggable="false">
<img class="handle" src="https://raw.githubusercontent.com/Nik439/Images/master/cpc-hide-reveal/handle.svg" draggable="false">
<img class="right" src="https://raw.githubusercontent.com/Nik439/Images/master/cpc-hide-reveal/hinge.svg" draggable="false">
<script src="pass.js"></script>
<input
id="text_input"
name="text_input"
class="password visible"
type="text"
spellcheck="false"
/>
<input class="password hidden" type="password" enabled />
<img
class="left"
src="https://raw.githubusercontent.com/Nik439/Images/master/cpc-hide-reveal/hinge.svg"
draggable="false"
/>
<img
class="handle"
src="https://raw.githubusercontent.com/Nik439/Images/master/cpc-hide-reveal/handle.svg"
draggable="false"
/>
<img
class="right"
src="https://raw.githubusercontent.com/Nik439/Images/master/cpc-hide-reveal/hinge.svg"
draggable="false"
/>
<script src="pass.js"></script>
</body>
</html>
<!DOCTYPE html>