go.chromium.org/luci@v0.0.0-20240309015107-7cdc2e660f33/examples/appengine/helloworld_v2/templates/pages/index.html (about)

     1  <!DOCTYPE HTML>
     2  <html>
     3    <head>
     4      <title>Example</title>
     5      {{.GoogleAnalyticsSnippet}}
     6    </head>
     7    <body>
     8      {{if not .IsAnonymous}}
     9        <p>Hi there, {{.User.Email}}!</p>
    10        {{if .User.Picture}}
    11          <p>Here's your picture: <img src="{{.User.Picture}}"></p>
    12        {{end}}
    13        <a href="{{.LogoutURL}}">Logout</a>
    14      {{else}}
    15        <a href="{{.LoginURL}}">Login</a>
    16      {{end}}
    17    </body>
    18  </html>