1
0
Fork 0
mirror of https://gitlab.com/hagrid-keyserver/hagrid.git synced 2023-02-13 20:55:02 -05:00
hagrid-keyserver--hagrid/templates/upload.html.hbs

13 lines
250 B
Handlebars
Raw Normal View History

2018-09-19 16:24:38 -04:00
{{#> layout }}
<h1>Tokens</h1>
{{#if tokens}}
<ul>
{{#each tokens}}
<li>{{userid}}: <a href="/verify/{{token}}"><tt>{{token}}</tt></a></li>
{{/each}}
</ul>
{{else}}
<em>No new user IDs</em>
{{/if}}
{{/layout}}