This commit is contained in:
Dario48true 2025-02-19 10:02:38 +01:00
parent 20b76c8c87
commit d69fea51b9
6 changed files with 62 additions and 43 deletions

View file

@ -3,7 +3,7 @@
<head>
<meta charset="utf-8" />
<title>/home/Dario48/Documents/</title>
<link rel="stylesheet" href="/style.css">
<link rel="stylesheet" href="/style.css" />
<script src="/path.js" defer=""></script>
<script src="/disable_form.js" defer=""></script>
</head>
@ -22,19 +22,23 @@
</div>
</div>
<form>
<input type="text" value="/home/Dario48/Documents/" class="stretch" />
<input
type="text"
value="/home/Dario48/Documents/"
class="stretch path"
id="disable_enter"
/>
</form>
<nav class="row">
<div class="column folder">
<a href="firma_digitale-Dario_Spinnato_.html">
<img
src="/home/Dario48/Pictures/html.svg"
style="
display: block;
margin-left: auto;
margin-right: auto;
"
style="display: block; margin-left: auto; margin-right: auto"
/>
<p style="text-align: center">firma_digitale-Dario_Spinnato_.html</p>
<p style="text-align: center">
firma_digitale-Dario_Spinnato_.html
</p>
</a>
</div>
</nav>

View file

@ -22,7 +22,12 @@
</div>
</div>
<form>
<input type="text" value="/home/Dario48/Pictures/" class="stretch" />
<input
type="text"
value="/home/Dario48/Pictures/"
class="stretch path"
id="disable_enter"
/>
</form>
<nav class="row">
<div class="column folder">

View file

@ -22,7 +22,12 @@
</div>
</div>
<form>
<input type="text" value="/home/Dario48/" class="stretch" />
<input
type="text"
value="/home/Dario48/"
class="stretch path"
id="disable_enter"
/>
</form>
<nav class="row">
<div class="column folder">

View file

@ -22,7 +22,12 @@
</div>
</div>
<form>
<input type="text" value="/home/" class="stretch" />
<input
type="text"
value="/home/"
class="stretch path"
id="disable_enter"
/>
</form>
<nav class="row">
<div class="column folder">

View file

@ -25,8 +25,8 @@
<input
type="text"
value="/"
class="stretch"
id="path disable_enter"
class="stretch path"
id="disable_enter"
/>
</form>
<nav class="row">

View file

@ -1 +1 @@
document.getElementById("path").addEventListener("keydown", function(e) { if (e.key === "Enter") { window.location.href = window.location.origin + e.target.value } })
document.getElementsByClassName("path").addEventListener("keydown", function(e) { if (e.key === "Enter") { window.location.href = window.location.origin + e.target.value } })