mirror of
https://github.com/vale981/Vulcan
synced 2025-03-09 12:16:37 -04:00
20 lines
No EOL
541 B
HTML
20 lines
No EOL
541 B
HTML
<template name="user_email">
|
|
<div class="grid-small grid-block dialog user-edit">
|
|
{{#with user}}
|
|
<div>
|
|
Please fill in your email below to finish signing up.
|
|
</div>
|
|
<form>
|
|
<div class="control-group">
|
|
<label>Email</label>
|
|
<div class="controls">
|
|
<input name="email" type="text" value="{{profile.email}}" />
|
|
</div>
|
|
</div>
|
|
<div class="form-actions">
|
|
<input type="submit" class="button" value="Submit" />
|
|
</div>
|
|
</form>
|
|
{{/with}}
|
|
</div>
|
|
</template> |