mirror of
https://github.com/rwf2/Rocket.git
synced 2024-12-27 04:42:40 +00:00
50c9e88cf9
The new examples directory... * Contains a `README.md` explaining each example. * Consolidates examples into more complete chunks. * Is just better. Resolves #1447.
25 lines
598 B
Handlebars
25 lines
598 B
Handlebars
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<meta name="viewport" content="width=device-width" />
|
|
<title>Rocket: Cookie Message</title>
|
|
</head>
|
|
<body>
|
|
<h1>Rocket Cookie Message</h1>
|
|
{{#if message }}
|
|
<p>{{message}}</p>
|
|
{{else}}
|
|
<p>No message yet.</p>
|
|
{{/if}}
|
|
|
|
<form action="/message" method="post" accept-charset="utf-8">
|
|
<textarea placeholder="Your message here..."
|
|
name="message" rows="10" cols="50"></textarea>
|
|
<p><input type="submit" value="Set Cookie"></p>
|
|
</form>
|
|
|
|
<a href="/">Home</a>
|
|
</body>
|
|
</html>
|