2016-08-07 06:14:05 +00:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<meta charset="utf-8" />
|
|
|
|
<meta name="viewport" content="width=device-width" />
|
2021-04-08 02:01:48 +00:00
|
|
|
<title>Rocket: Cookie Message</title>
|
2016-08-07 06:14:05 +00:00
|
|
|
</head>
|
|
|
|
<body>
|
2021-04-08 02:01:48 +00:00
|
|
|
<h1>Rocket Cookie Message</h1>
|
2016-11-04 14:33:58 +00:00
|
|
|
{{#if message }}
|
|
|
|
<p>{{message}}</p>
|
|
|
|
{{else}}
|
2016-08-07 06:14:05 +00:00
|
|
|
<p>No message yet.</p>
|
2016-11-04 14:33:58 +00:00
|
|
|
{{/if}}
|
2016-08-07 06:14:05 +00:00
|
|
|
|
2021-04-08 02:01:48 +00:00
|
|
|
<form action="/message" method="post" accept-charset="utf-8">
|
2016-08-07 06:14:05 +00:00
|
|
|
<textarea placeholder="Your message here..."
|
|
|
|
name="message" rows="10" cols="50"></textarea>
|
|
|
|
<p><input type="submit" value="Set Cookie"></p>
|
|
|
|
</form>
|
2021-04-08 02:01:48 +00:00
|
|
|
|
|
|
|
<a href="/">Home</a>
|
2016-08-07 06:14:05 +00:00
|
|
|
</body>
|
|
|
|
</html>
|