liquid_feedback_frontend
view app/main/registration/register_manual_check_needed.lua @ 1420:09f50a44cb7d
Removed not needed code
| author | bsw |
|---|---|
| date | Thu Aug 30 10:57:39 2018 +0200 (2018-08-30) |
| parents | 39447c822336 |
| 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.manual_verification_needed_text then
8 slot.put(config.self_registration.manual_verification_needed_text)
9 else
10 ui.heading{ content = _"Manual verification needed" }
11 slot.put("<br />")
12 ui.container { content = function()
13 ui.tag{ content = "We are sorry but the automatic verification of personal data has not been successful. We will need to verify your information manually. We apologise for the wait, and thank you for your cooperation. Until your information is verified, you can continue to " }
14 ui.link{ content = _"browse the portal as an unregistered user", module = "index", view = "index" }
15 ui.tag{ content = "." }
16 slot.put("<br /><br />")
17 ui.tag{ content = "For problems related to registration and use of the platform, please email " }
18 ui.link{ external = "mailto:" .. config.self_registration.contact_email, content = config.self_registration.contact_email }
19 ui.tag{ content = "." }
20 end }
21 slot.put("<br />")
22 end
24 end }
25 end }
