No Description

index.html 326B

    <head> <title>eponymous_pony: Usernames as a Service</title> <link rel="icon" href="cat.png" /> </head> <body> <h1>Usernames as a Service</h1> {{> names}} </body> <template name="names"> <ul> {{#each names}} <li>{{name}}</li> {{/each}} </ul> <label>Add name: </label><input type="text" /> </template>