liquid_feedback_frontend
view app/main/registration/register_completed.lua @ 1505:3f5758f325db
Show hidden units in newsletter send dialog
| author | bsw |
|---|---|
| date | Fri Jul 31 12:14:13 2020 +0200 (2020-07-31) |
| 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 }
