diff --git a/members_lumbung_space/routes/register.py b/members_lumbung_space/routes/register.py index b4659cd..90288fb 100644 --- a/members_lumbung_space/routes/register.py +++ b/members_lumbung_space/routes/register.py @@ -120,7 +120,7 @@ def form_keycloak_register( "submit.html", context=context ) - context = {"request": request, "email": email} + context = {"request": request, "first_name": first_name} return request.app.state.templates.TemplateResponse( "submit.html", context=context ) diff --git a/members_lumbung_space/static/default.css b/members_lumbung_space/static/default.css index 360bc59..1675478 100644 --- a/members_lumbung_space/static/default.css +++ b/members_lumbung_space/static/default.css @@ -23,3 +23,7 @@ input:invalid { input:invalid:focus { background-image: linear-gradient(magenta, pink); } + +#welcome-message img { + width: 50%; +} diff --git a/members_lumbung_space/static/logotype-01.png b/members_lumbung_space/static/logotype-01.png new file mode 100644 index 0000000..aeb657e Binary files /dev/null and b/members_lumbung_space/static/logotype-01.png differ diff --git a/members_lumbung_space/static/lumbung.css b/members_lumbung_space/static/lumbung.css index b6fd784..9ba439d 100644 --- a/members_lumbung_space/static/lumbung.css +++ b/members_lumbung_space/static/lumbung.css @@ -27,3 +27,7 @@ input:invalid:focus { .error { color: red; } + +#welcome-message img { + width: 50%; +} diff --git a/members_lumbung_space/templates/submit.html b/members_lumbung_space/templates/submit.html index daf8d55..af91d9c 100644 --- a/members_lumbung_space/templates/submit.html +++ b/members_lumbung_space/templates/submit.html @@ -1,10 +1,27 @@ {% extends "base.html" %} {% block content %} {% if email %} -

Thank you! You will receive a welcome mail to {{ email }} shortly.

-

Don't forget to check your Spam folder, in case the email ends up there.

+
+

Welcome, Lumbungers!

+ + + +

Thanks for joining {{ first_name }}!

+ +

lumbung.space is an experimental social and publishing platform by and for the lumbung artists and lumbung members. It is a (digital) living room for our collective lumbung building process that allows us to connect, support each other, and also share knowledge collectively. It is built on open platforms, cooperative governance, and as a community infrastructure meant for our practices to develop and thrive. As a project, lumbung.space is an experiment for artist-initiated digital platforms and part of the process towards documenta fifteen. After documenta—the strive is for lumbung.space to be sustained as a shared resources for the lumbung inter-lokal.

+ +

lumbung.space is a space for learning: currently, the working group is trying to find out what a social platform for a lumbung practice looks like; as we recognize that we don't want our practices to be subject to, or dependent upon extractive, exploitative digital infrastructures. Making lumbung.space to be a platform that is owned and operated by the community of users themselves: which means us! (and not a service that is run by a corporation). We are working with Autonomic Co-operative who is part of the Co-op Cloud initiative where our learnings feedback into, allowing other collectives to set up similar infrastructures.

+ +

As it is a self-organized community infrastructure, we users are respecting the lumbung.space community guidelines and each of us is responsible for our behavior. Please kindly check panduan.lumbung.space to find more thorough documentation about lumbung.space.

+ +

We thank every lumbung.space user who has helped to make it a friendly and comfortable digital living room :)

+ +

Warmest Regards, lumbung.space

+
{% elif exception %} -

Woops, something went wrong: {{ exception }}.

-

Please contact your system adminstrator if this is unexpected.

+
+

Woops, we're very sorry, something went wrong: {{ exception }}.

+

Please mail contact@lubmung.space for help, please include the error message above. Thank you!

+
{% endif %} {% endblock %}