mirror of
https://github.com/vale981/Vulcan
synced 2025-03-06 18:11:40 -05:00
16 lines
425 B
HTML
16 lines
425 B
HTML
<template name="signup">
|
|
{{#if show}}
|
|
<div class="grid signup">
|
|
<div>
|
|
<label id="username">Username: <input type="text" value="" /></label>
|
|
</div>
|
|
<div>
|
|
<label id="password">Password: <input type="password" value="" /></label>
|
|
</div>
|
|
<div>
|
|
<input type="submit" value="Sign In" />
|
|
</div>
|
|
<p><a href="#">Already have an account? Sign in!</a></p>
|
|
</div>
|
|
{{/if}}
|
|
</template>
|