File: guestbook.html

package info (click to toggle)
golang-google-appengine 1.6.7-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 2,076 kB
  • sloc: sh: 43; makefile: 7
file content (26 lines) | stat: -rw-r--r-- 718 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<!DOCTYPE html>
<html>
  <head>
    <title>Guestbook Demo</title>
  </head>
  <body>
    <p>
      {{with .Email}}You are currently logged in as {{.}}.{{end}}
      {{with .Login}}<a href="{{.}}">Sign in</a>{{end}}
      {{with .Logout}}<a href="{{.}}">Sign out</a>{{end}}
    </p>

    {{range .Greetings }}
    <p>
      {{with .Author}}<b>{{.}}</b>{{else}}An anonymous person{{end}}
      on <em>{{.Date.Format "3:04pm, Mon 2 Jan"}}</em>
      wrote <blockquote>{{.Content}}</blockquote>
    </p>
    {{end}}

    <form action="/sign" method="post">
      <div><textarea name="content" rows="3" cols="60"></textarea></div>
      <div><input type="submit" value="Sign Guestbook"></div>
    </form>
  </body>
</html>