games/tools/requestool/index.html
2023-01-02 13:34:13 +01:00

15 lines
359 B
HTML

<form>
<label for="urlinput">Url:</label><br>
<input type="text" id="urlinput" name="urlinput"><br>
<label for="reqtype">Request type:</label><br>
<input type="text" id="reqtype" name="reqtype">
</form>
<h1>Response</h1>
<br>
<p id="response">No response</p>
<script>
document.getElementById("response").innerHTML = "Bonjour";
</script>