Vulcan/client/templates/user_email.html

23 lines
632 B
HTML
Raw Normal View History

2012-10-01 13:57:52 +09:00
<template name="user_email">
<div class="grid-small grid-block dialog user-edit">
{{#with user}}
{{#if profileIncomplete}}
<div>
Please add your email below before continuing.
</div>
{{/if}}
<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">
<a href="/forgot_password">Forgot password?</a>
<input type="submit" class="button" value="Submit" />
</div>
</form>
{{/with}}
</div>
</template>