liquid_feedback_frontend

view app/main/registration/register_completed.lua @ 1858:3d1f0464a3ea

Handle missing ldap.member.allowed function
author bsw
date Tue Sep 20 17:35:29 2022 +0200 (20 months ago)
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