mirror of
https://github.com/hexahigh/games.git
synced 2025-12-11 20:15:38 +01:00
15 lines
359 B
HTML
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> |