diff options
author | Marvin Borner | 2022-10-23 13:07:34 +0200 |
---|---|---|
committer | Marvin Borner | 2022-10-23 13:09:17 +0200 |
commit | b3e92ed5e8a77ccc8db61712a3ad805f9d25ced3 (patch) | |
tree | 2c42a99d4e6b904622565003e24971773a39cc10 /public/index.html |
Diffstat (limited to 'public/index.html')
-rw-r--r-- | public/index.html | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/public/index.html b/public/index.html new file mode 100644 index 0000000..00ad5fa --- /dev/null +++ b/public/index.html @@ -0,0 +1,25 @@ +<!DOCTYPE html> +<html> + <head> + <meta charset="UTF-8" /> + <meta name="viewport" content="width=device-width" /> + <title>input</title> + </head> + <body> + <input type="text" placeholder="your program" value="++++++++[>++++[>++>+++>+++>+<<<<-]>+>+>->>+[<]<-]>>.>---.+++++++..+++.>>.<-.<.+++.------.--------.>>+.>++." id="input" /> + <input type="number" value="300" id="timeout" /> + <input type="button" value="go" id="button" /> + <script charset="utf-8"> + const but = document.getElementById("button") + const inp = document.getElementById("input") + but.addEventListener("click", () => { + const timeout = +document.getElementById("timeout").value + // JS cookie assignment be weird af + document.cookie = `code=${inp.value}; max-age=${timeout}; path=/` + document.cookie = `ptr=0; max-age=${timeout}; path=/` + document.cookie = `out=[]; max-age=${timeout}; path=/` + window.location.replace("/0") + }) + </script> + </body> +</html> |