Sha256: cec70718965e66e3a8bf807d67e51f5560eff8ef26af9f6e227a5750c65751d7
Contents?: true
Size: 648 Bytes
Versions: 13
Compression:
Stored size: 648 Bytes
Contents
<html> <head> <title>TodoList</title> <style> table { width: 100%; } tr { background: #efe; width: 100%; } tr:hover { background: #dfd; } td.title { font-weight: bold; width: 60%; } td.status { margin: 1em; } a { color: #3a3; } </style> </head> <body> <h1>New Task</h1> <a href="/">Back to TodoList</a> <form method="POST" action="create"> Task: <input type="text" name="title" /><br /> <input type="submit" /> </form> </body> </html>
Version data entries
13 entries across 13 versions & 2 rubygems