authdemo.html 211 B

1234567891011121314
  1. <head>
  2. <title>authdemo</title>
  3. </head>
  4. <body>
  5. {{> hello}}
  6. </body>
  7. <template name="hello">
  8. <h1>Hello world!</h1>
  9. {{ greeting }}
  10. {{> loginButtons }}
  11. <input type="button" value="click" />
  12. </template>