nickel 0.11.0

An express.js inspired web framework
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<!DOCTYPE html>
<html>
<head>
    <meta http-equiv="Content-Type" content="text/html">
    <title>{{title}}</title>
</head>
<body>
      <form>
            <input type="text" name="firstname" placeholder="First Name" autofocus>
            <input type="text" name="lastname" placeholder="Last Name">
            <input type="tel" name="phone" placeholder="Phone #">
            <input type="email" name="email" placeholder="Email">
            <button type="submit" formenctype="application/x-www-form-urlencoded" formaction="/confirmation" formmethod="post">SEND</button>
      </form>
</body>
</html>