login

<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8">
  <title>{{$title}}</title>
  <style>
    .centered { text-align: center; }
    % include view/form.css
  </style>
</head>
<body>
  <h1 class="centered">Project</h1>
  <form action="/new-project" method="post">
    <ul class="centered ul-form">
      <li><input
        type="text" class="flat-field" name="name" placeholder="Name" required
        pattern="[-_A-Za-z0-9]+" autofocus>
      </li>
      <li><input type="text" class="flat-field" name="desc" placeholder="Description"></li>
      <li><input type="submit" class="flat-button" value="Create"></li>
    </ul>
  </form>
</body>
</html>