You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

29 lines
1.1 KiB

  1. <html>
  2. <head>
  3. <title>{{ .Title }}</title>
  4. <link type="text/css" rel="stylesheet" href="/public/styles.css">
  5. <link type="text/css" rel="stylesheet" href="/public/bootstrap-combined.min.css">
  6. </head>
  7. <body>
  8. <h1>Session: {{ .SessionID }}</h1>
  9. <ol>
  10. <li><a href="/">Home</a></li>
  11. <li><a href="/session">Session</a></li>
  12. <li><a href="/session/auth">Authenticated Session</a></li>
  13. <li><a href="/context">Chained Context</a></li>
  14. <li><a href="/panic">Panic</a></li>
  15. <li><a href="/public/styles.css">Styles.css</a></li>
  16. <li><a href="/public/jquery-2.0.0.min.js">JQuery</a></li>
  17. <li><a href="/public/logo.png">Logo</a></li>
  18. </ol>
  19. <h2>Current Value: {{ .Text }}</h2>
  20. <form method="POST">
  21. <input type="text" name="txt" placeholder="some value to save to session"></input>
  22. <button type="submit">Submit</button>
  23. </form>
  24. <script src="/public/jquery-2.0.0.min.js"></script>
  25. </body>
  26. </html>