ZKT-skuska/web/public/index.html
2023-05-24 00:48:36 +02:00

15 lines
394 B
HTML

<!DOCTYPE html>
<html>
<head>
<title>Node.js Application</title>
</head>
<body>
<h1>Enter your name:</h1>
<form action="/submit" method="POST">
<input type="text" name="firstName" placeholder="First name" required><br>
<input type="text" name="lastName" placeholder="Last name" required><br>
<button type="submit">Send</button>
</form>
</body>
</html>