wrap welcome text
continuous-integration/drone/push Build is passing Details

This commit is contained in:
cellarspoon 2022-01-13 17:33:30 +01:00
parent bb9e276138
commit 41981684dc
No known key found for this signature in database
GPG Key ID: 03789458B3D0C410
1 changed files with 24 additions and 20 deletions

View File

@ -1,31 +1,35 @@
{% extends "base.html" %}
{% block content %}
{% if first_name %}
<div id="welcome-message">
<p>Welcome, Lumbungers!</p>
<div class="logo">
<img src="{{ url_for('static', path='svg/lumbung_space_logo.svg') }}" alt="lumbung.space logo">
<div class="center-table">
<div class="signup-form-box">
<div class="form-header">
<div id="formlogo" class="logo">
<img src="{{ url_for('static', path='svg/lumbung_space_logo.svg') }}" alt="lumbung.space logo">
</div>
</div>
<div class="form-body">
{% if first_name %}
<div id="welcome-message">
<p>Welcome Lumbungers! Thanks for joining {{ first_name }}!</p>
<p>Thanks for joining {{ first_name }}!</p>
<p>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.</p>
<p>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.</p>
<p>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 <a href="https://autonomic.zone">Autonomic Co-operative</a> who is part of the <a href="https://coopcloud.tech">Co-op Cloud</a> initiative where our learnings feedback into, allowing other collectives to set up similar infrastructures.</p>
<p>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 <a href="https://autonomic.zone">Autonomic Co-operative</a> who is part of the <a href="https://coopcloud.tech">Co-op Cloud</a> initiative where our learnings feedback into, allowing other collectives to set up similar infrastructures.</p>
<p>As it is a self-organized community infrastructure, we users are respecting the <a href="https://panduan.lumbung.space/share/ece8e392-7b21-4379-bd82-a11e06ebf1fb">lumbung.space community guidelines</a> and each of us is responsible for our behavior.</p>
<p>As it is a self-organized community infrastructure, we users are respecting the <a href="#TODO">lumbung.space community guidelines</a> and each of us is responsible for our behavior. Please kindly check <a href="https://panduan.lumbung.space">panduan.lumbung.space</a> to find more thorough documentation about lumbung.space.</p>
<p>We thank every lumbung.space user who has helped to make it a friendly and comfortable digital living room :)</p>
<p>We thank every lumbung.space user who has helped to make it a friendly and comfortable digital living room :)</p>
<p>Please visit <a href="https://members.lumbung.space">members.lumbung.space</a> to finish your account registration.</p>
<p>Please visit <a href="https://members.lumbung.space">members.lumbung.space</a> to finish your account registration.</p>
<p>Warmest Regards, lumbung.space</p>
<p>Warmest Regards, lumbung.space</p>
</div>
{% elif exception %}
<div>
<p>Woops, we're very sorry, something went wrong: {{ exception }}.</p>
<p>Please mail <a href="mailto:contact@lumbung.space">contact@lubmung.space</a> for help, please include the error message above. Thank you!</p>
</div>
{% endif %}
</div>
</div>
{% elif exception %}
<div>
<p>Woops, we're very sorry, something went wrong: {{ exception }}.</p>
<p>Please mail <a href="mailto:contact@lumbung.space">contact@lubmung.space</a> for help, please include the error message above. Thank you!</p>
</div>
{% endif %}
{% endblock %}