liquid_feedback_frontend
diff app/main/registration/register_manual_check_needed.lua @ 1309:32cc544d5a5b
Cumulative patch for upcoming frontend version 4
author | bsw/jbe |
---|---|
date | Sun Jul 15 14:07:29 2018 +0200 (2018-07-15) |
parents | |
children | 8d0a49d5ed7e |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/app/main/registration/register_manual_check_needed.lua Sun Jul 15 14:07:29 2018 +0200 1.3 @@ -0,0 +1,22 @@ 1.4 +ui.title(_"Self registration") 1.5 +app.html_title.title = _"Self registration" 1.6 + 1.7 +ui.container{ attr = { class = "mdl-grid" }, content = function() 1.8 + ui.container{ attr = { class = "mdl-cell mdl-cell--12-col" }, content = function() 1.9 + 1.10 + ui.heading{ content = _"Manual verification needed" } 1.11 + slot.put("<br />") 1.12 + ui.container { content = function() 1.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 " } 1.14 + ui.link{ content = _"browse the portal as an unregistered user", module = "index", view = "index" } 1.15 + ui.tag{ content = "." } 1.16 + slot.put("<br /><br />") 1.17 + ui.tag{ content = "For problems related to registration and use of the platform, please email " } 1.18 + ui.link{ external = "mailto:" .. config.self_registration.contact_email, content = config.self_registration.contact_email } 1.19 + ui.tag{ content = "." } 1.20 + end } 1.21 + slot.put("<br />") 1.22 + 1.23 + end } 1.24 +end } 1.25 +