23 lines
514 B
HTML
23 lines
514 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>MY APP</title>
|
|
</head>
|
|
|
|
|
|
|
|
<body>
|
|
<h1>Express Node App</h1>
|
|
|
|
<form action="/quotes" method="post">
|
|
<input type="text" placeholder="name" name="name">
|
|
<input type="text" placeholder="quotes" name="quotes">
|
|
<button type="submit">Submit</button>
|
|
</form>
|
|
</body>
|
|
|
|
</html> |