1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- <div class="activation-page">
- <div class="page-header">
- <div class="container">
- <h1>{{gettext "Request activation link"}}</h1>
- </div>
- </div>
- <div class="container">
- <div class="row">
- <div class="col-md-8">
- <p>{{gettext "Site administrator may impose requirement on newly regitered accounts to be activated before users will be able to sign in."}}</p>
- <p>{{gettext "Depending on time of registration, you will be able activate your account by clicking special activation link. This link will be valid only for your browser, for seven days or until your account is activated."}}</p>
- <p>{{gettext "To receive this link, enter your account's e-mail addres in form and press \"Send link\" button."}}</p>
- </div>
- <div class="col-md-4">
- <div class="well well-form">
- <form {{action "submit" on="submit"}}>
- <div class="form-group">
- <div class="control-input">
- {{input type="text" value=email class="form-control" placeholder=(gettext "Your e-mail address")}}
- </div>
- </div>
- {{#if isLoading}}
- <button type="button" class="btn btn-block btn-primary" disabled="disabled">
- <span class="fa fa-cog fa-spin"></span>
- {{gettext "Processing..."}}
- </button>
- {{else}}
- <button type="submit" class="btn btn-primary btn-block">{{gettext "Send link"}}</button>
- {{/if}}
- </form>
- </div>
- </div>
- </div>
- </div>
- </div>
|