Skip to content
This repository has been archived by the owner on Oct 15, 2023. It is now read-only.

Commit

Permalink
Update realindex.html
Browse files Browse the repository at this point in the history
  • Loading branch information
Coding4Hours authored Sep 17, 2023
1 parent a0e40ac commit f955f6b
Showing 1 changed file with 16 additions and 1 deletion.
17 changes: 16 additions & 1 deletion public/realindex.html
Original file line number Diff line number Diff line change
Expand Up @@ -237,8 +237,23 @@
<body>
<div class="container">
<div>
<span class="w3-large"> <font size="+20"><b>Eternal Proxy</b></font><br></span>

<div class="container">
<div>
<script>
async function go() {
var input = document.getElementById('url-target');
if (input.value) {
await registerSW();
window.location.href = __uv$config.prefix + __uv$config.encodeUrl(input.value);
} else {
alert('Please provide a link. It does not require https://.');
}
}
</script>
<span class="w3-large"> <font size="+20"><b>Eternal Proxy</b></font><br></span>
<span class="w3-large"><font size="+2.5">Made by students, for students :)</span>
<input class="w3-xlarge" type='text' placeholder='www.example.com' id='url-target' onkeydown='if(event.key==="Enter") go()' />

</div>

Expand Down

0 comments on commit f955f6b

Please sign in to comment.