mirror of
https://github.com/cupcakearmy/blaze.git
synced 2024-12-23 00:36:26 +00:00
25 lines
772 B
HTML
25 lines
772 B
HTML
|
<!DOCTYPE html>
|
||
|
<html lang="en">
|
||
|
<head>
|
||
|
<meta charset="UTF-8" />
|
||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||
|
<title>Document</title>
|
||
|
</head>
|
||
|
<body>
|
||
|
<h1>Welcome to Blaze this PAge</h1>
|
||
|
<p>Paste here the URL you want to wisit</p>
|
||
|
<label for="url">URL to blaze</label>
|
||
|
<input name="" utl id="typ" type="text" placeholder="Write an URL..." />
|
||
|
<button>BLAZE IT!</button>
|
||
|
|
||
|
<script>
|
||
|
const button = document.querySelector("button");
|
||
|
const input = document.querySelector("input");
|
||
|
button.addEventListener("click", function () {
|
||
|
const blazeUrl = "https://ill-red-skunk-wig.cyclic.app";
|
||
|
location.href = `${blazeUrl}/at=${input.value}`;
|
||
|
});
|
||
|
</script>
|
||
|
</body>
|
||
|
</html>
|