toppage.dtl 422 B

123456789101112131415161718192021222324
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="utf-8">
  5. <title>Cowboy Cookie Example</title>
  6. </head>
  7. <body>
  8. <h1>Cowboy Cookie Example</h1>
  9. <p>Refresh the page to see the next cookie.</p>
  10. <h2>Cookie Set Server-Side</h2>
  11. <p>{{ server }}</p>
  12. <h2>Cookie Set Client-Side</h2>
  13. <p>{{ client }}</p>
  14. <script type="text/javascript">
  15. // <![CDATA[
  16. document.cookie="client=test=";
  17. // ]]>
  18. </script>
  19. </body>
  20. </html>