# HG changeset patch # User Goffi # Date 1492360686 -7200 # Node ID 529fff4473c1b9e8f15c79cf9b5bfc2fbe5a21a0 # Parent 2b26eadd8ad738102f59d80f4a58f6c0d4bc6238 invitation: invitation welcome page, first draft diff -r 2b26eadd8ad7 -r 529fff4473c1 default/invitation/welcome.html --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/default/invitation/welcome.html Sun Apr 16 18:38:06 2017 +0200 @@ -0,0 +1,13 @@ +{% extends 'base/base.html' %} + +{% block body %} +
+

Welcome {{name}}

+

You have been invited to participate with the community, please choose an action below

+
+ +{% if include_url is defined %} + +{% endif %} + +{% endblock body %} diff -r 2b26eadd8ad7 -r 529fff4473c1 default/static/invitation.css --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/default/static/invitation.css Sun Apr 16 18:38:06 2017 +0200 @@ -0,0 +1,27 @@ +#body { + display: flex; + flex-direction: column; +} + +.invitation_header { + flex: 1 +} + +.invitation_header h1,p { + text-align: center; +} + +#include_main { + flex: 9 +} + +#include_main { + width: 100%; + margin: 0; + border: none; +} + +footer { + /* footer should already be displayed in included page */ + display: none; +}