liquid_feedback_frontend
diff app/main/registration/register_completed.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 | ebfedd6e44fe |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/app/main/registration/register_completed.lua Sun Jul 15 14:07:29 2018 +0200 1.3 @@ -0,0 +1,16 @@ 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 = _"Self registration completed" } 1.11 + slot.put("<br />") 1.12 + ui.container { content = _"We have sent you an invitation email to finish the account setup." } 1.13 + slot.put("<br />") 1.14 + ui.container { content = _"Please also check your SPAM folder." } 1.15 + slot.put("<br />") 1.16 + 1.17 + 1.18 + end } 1.19 +end }