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

Version Path
starapor-slippers-0.0.0 examples/todolist/template/new.st
starapor-slippers-0.0.1 examples/todolist/template/new.st
starapor-slippers-0.0.2 examples/todolist/template/new.st
starapor-slippers-0.0.3 examples/todolist/template/new.st
starapor-slippers-0.0.5 examples/todolist/view/new.st
starapor-slippers-0.0.6 examples/todolist/view/new.st
starapor-slippers-0.0.8 examples/todolist/view/new.st
starapor-slippers-0.0.9 examples/todolist/view/new.st
slippers-0.0.14 examples/todolist/view/new.st
slippers-0.0.13 examples/todolist/view/new.st
slippers-0.0.12 examples/todolist/view/new.st
slippers-0.0.11 examples/todolist/view/new.st
slippers-0.0.10 examples/todolist/view/new.st