2012-10-01 13:57:52 +09:00
|
|
|
<template name="user_email">
|
|
|
|
<div class="grid-small grid-block dialog user-edit">
|
|
|
|
{{#with user}}
|
|
|
|
<div>
|
2014-11-19 00:00:09 +08:00
|
|
|
{{i18n "please_fill_in_your_email_below_to_finish_signing_up"}}
|
2012-10-01 13:57:52 +09:00
|
|
|
</div>
|
|
|
|
<form>
|
|
|
|
<div class="control-group">
|
2014-11-19 00:00:09 +08:00
|
|
|
<label>{{i18n "username"}}</label>
|
2014-05-04 17:21:52 +01:00
|
|
|
<div class="controls">
|
2014-08-12 17:47:11 +09:00
|
|
|
<input name="username" type="text" value="{{username}}" />
|
2014-05-04 17:21:52 +01:00
|
|
|
</div>
|
|
|
|
<br>
|
2014-11-19 00:00:09 +08:00
|
|
|
<label>{{i18n "email"}}</label>
|
2012-10-01 13:57:52 +09:00
|
|
|
<div class="controls">
|
|
|
|
<input name="email" type="text" value="{{profile.email}}" />
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="form-actions">
|
2014-11-19 00:00:09 +08:00
|
|
|
<input type="submit" class="button" value="{{i18n "submit"}}" />
|
2012-10-01 13:57:52 +09:00
|
|
|
</div>
|
|
|
|
</form>
|
|
|
|
{{/with}}
|
|
|
|
</div>
|
|
|
|
</template>
|