Express_Crud_Example/views/index.ejs
2022-01-28 22:33:42 +01:00

39 lines
1.0 KiB
Plaintext

<!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>
<h2>Quotes</h2>
<ul class="quotes">
<!-- Loop through quotes -->
<% for(var i=0; i < quotes.length; i++) {%>
<li class="quote">
<!-- Output name from the iterated quote object -->
<span>
<%= quotes[i].name %>
</span>:
<!-- Output quote from the iterated quote object -->
<span>
<%= quotes[i].quotes %>
</span>
</li>
<% } %>
</ul>
</body>
</html>