Skip to content
Permalink
b55393d56d
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
22 lines (21 sloc) 629 Bytes
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>${title}</title>
<link rel="stylesheet" href="css/form.css">
</head>
<body>
<h1>TODO List</h1>
<!-- employee.html -->
<form action="/" method="get" id="theForm">
<fieldset><legend>Add an Item</legend>
<div><label for="item">Item</label><input type="text" name="item" id="item" required></div>
<input type="hidden" name="list" value="${list}" />
<input type="submit" value="Add" id="submit">
</fieldset>
<h3>${list}</h3>
<div id="output"><ol>${items}</ol></div>
</form>
</body>
</html>