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-25 17:16:00 +09:00
|
|
|
{{_ "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-25 17:16:00 +09:00
|
|
|
<label>{{_ "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-25 17:16:00 +09:00
|
|
|
<label>{{_ "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-12-06 18:19:54 +09:00
|
|
|
<input type="submit" class="button btn btn-primary" value="{{_ "submit"}}" />
|
2012-10-01 13:57:52 +09:00
|
|
|
</div>
|
|
|
|
</form>
|
|
|
|
{{/with}}
|
|
|
|
</div>
|
|
|
|
</template>
|