15 lines
394 B
HTML
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>
|