liquid_feedback_frontend
annotate app/main/registration/register_completed.lua @ 1754:22a75f55ff48
merge
| author | bsw |
|---|---|
| date | Wed Oct 13 13:33:43 2021 +0200 (2021-10-13) |
| parents | 16695c98de23 |
| children |
| rev | line source |
|---|---|
| bsw/jbe@1309 | 1 ui.title(_"Self registration") |
| bsw/jbe@1309 | 2 app.html_title.title = _"Self registration" |
| bsw/jbe@1309 | 3 |
| bsw/jbe@1309 | 4 ui.container{ attr = { class = "mdl-grid" }, content = function() |
| bsw/jbe@1309 | 5 ui.container{ attr = { class = "mdl-cell mdl-cell--12-col" }, content = function() |
| bsw/jbe@1309 | 6 |
| bsw@1415 | 7 if config.self_registration.confirmation_html then |
| bsw@1415 | 8 slot.put(config.self_registration.confirmation_html) |
| bsw@1415 | 9 else |
| bsw@1415 | 10 ui.heading{ content = _"Self registration completed" } |
| bsw@1415 | 11 slot.put("<br />") |
| bsw@1415 | 12 ui.container { content = _"We have sent you an invitation email to finish the account setup." } |
| bsw@1415 | 13 slot.put("<br />") |
| bsw@1415 | 14 ui.container { content = _"Please also check your SPAM folder." } |
| bsw@1415 | 15 slot.put("<br />") |
| bsw@1415 | 16 if config.self_registration.confirmation_extra_html then |
| bsw@1415 | 17 slot.put(config.self_registration.confirmation_extra_html) |
| bsw@1415 | 18 end |
| bsw@1407 | 19 end |
| bsw/jbe@1309 | 20 |
| bsw/jbe@1309 | 21 end } |
| bsw/jbe@1309 | 22 end } |