14 lines
211 B
HTML
14 lines
211 B
HTML
<head>
|
|
<title>authdemo</title>
|
|
</head>
|
|
|
|
<body>
|
|
{{> hello}}
|
|
</body>
|
|
|
|
<template name="hello">
|
|
<h1>Hello world!</h1>
|
|
{{ greeting }}
|
|
{{> loginButtons }}
|
|
<input type="button" value="click" />
|
|
</template>
|