diasporadiaries

a platform for writing stories with personal accounts and messages
git clone https://git.parazyd.org/diasporadiaries
Log | Files | Refs | Submodules | README | LICENSE

success_write.html (1281B)


      1 {% include 'header.html' %}
      2 
      3   <title>Submitted | Diaspora Diaries</title>
      4 
      5 {% include 'nav.html' %}
      6 
      7   <main role="main" class="container cover">
      8 
      9     <h1 class="cover-heading">Story submitted!</h1>
     10     <hr>
     11 
     12     <p class="lead">Thank you for writing your story!</p>
     13 
     14     <p class="lead">Your story will be read and approved by someone from the
     15     crew.</p>
     16 
     17     <p class="lead">Bookmark or copy the following link if you ever wish to
     18     delete your post: </p>
     19 
     20     <p>{{ request.host_url }}delete?key={{ delkey }}</p>
     21 
     22   </main>
     23 
     24   {% if new %}
     25   <main role="main" class="container cover">
     26     <h1>Your login</h1>
     27     <hr>
     28 
     29     <p class="lead">Since you've left your email, we've created credentials for
     30     you. This will enable you to send and recieve messages, and have a profile
     31     page.</p>
     32 
     33     <p class="lead">Your email is kept privately and will not be used for
     34     <b>any</b> purposes other than identifying your account in the database.
     35     It's the easiest way for us unfortunately.</p>
     36 
     37     <p class="lead">To log in, use your email address and the following
     38     password: <b>{{ new }}</b></p>
     39 
     40     <p class="lead">If you wish to delete your account, don't hesitate to
     41     contact us via email.</p>
     42   </main>
     43   {% endif %}
     44 
     45   </main>
     46 
     47 {% include 'footer.html' %}