liquid_feedback_frontend
view app/main/registration/register_completed.lua @ 1641:ab837b075cf7
Fixed mldap_get_named_number_arg to not leave any element on the Lua stack (should not have had any effect anyway but is now consistent to documentation)
| author | jbe |
|---|---|
| date | Tue Feb 09 17:44:47 2021 +0100 (2021-02-09) |
| parents | 16695c98de23 |
| children |
line source
1 ui.title(_"Self registration")
2 app.html_title.title = _"Self registration"
4 ui.container{ attr = { class = "mdl-grid" }, content = function()
5 ui.container{ attr = { class = "mdl-cell mdl-cell--12-col" }, content = function()
7 if config.self_registration.confirmation_html then
8 slot.put(config.self_registration.confirmation_html)
9 else
10 ui.heading{ content = _"Self registration completed" }
11 slot.put("<br />")
12 ui.container { content = _"We have sent you an invitation email to finish the account setup." }
13 slot.put("<br />")
14 ui.container { content = _"Please also check your SPAM folder." }
15 slot.put("<br />")
16 if config.self_registration.confirmation_extra_html then
17 slot.put(config.self_registration.confirmation_extra_html)
18 end
19 end
21 end }
22 end }
