liquid_feedback_frontend

view app/main/registration/register_completed.lua @ 1668:6d75df24e66e

Updated German translation
author bsw
date Sun Mar 07 09:52:36 2021 +0100 (2021-03-07)
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 }

Impressum / About Us