Val Town is a social website to write and deploy JavaScript.
Build APIs and schedule functions from your browser.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// This val responds with an HTML form to input the user's name and greet them
export default async function(req: Request): Promise<Response> {
const htmlResponse = `
<form action="/" method="POST">
<label for="name">Enter your name:</label><br>
<input type="text" id="name" name="name"><br>
<input type="submit" value="Submit">
</form>
`;
return new Response(htmlResponse, {
headers: { "Content-Type": "text/html" },
});
}
janpaul123-valle_tmp_2702005215371008406643879034496836.web.val.run
July 15, 2024