/kai/templates/accounts/associate.mako
https://bitbucket.org/bbangert/kai/ · Mako · 18 lines · 15 code · 3 blank · 0 comment · 2 complexity · 9d0aa2608dcba9f58fe6b11686d35757 MD5 · raw file
- <%!
- from kai.model.forms import login_form
- %>
- <div class="yui-b content">
- <h1>${_('OpenID Association')}</h1>
-
- <p>${_('''The OpenID URL you used (<b>%s</b>) was not found
- in our database. If you would like to associate this OpenID URL with
- an existing account so that you can use this OpenID URL to login with
- in the future, proceed below.''' % c.openid)}</p>
-
- <p>${_('If you would like to register with PylonsHQ instead,')}
- ${h.link_to(_('continue on to the registration page'), url=url('openid_register'))}.
-
- ${login_form.display(action=url('openid_associate')) | n}
- </div>
- <%def name="title()">${parent.title()} - ${_('Associate OpenID Account')}</%def>
- <%inherit file="../layout.mako" />