changeset 4bbf0565fad7 in www.tryton.org:default
details: https://hg.tryton.org/www.tryton.org?cmd=changeset;node=4bbf0565fad7
description:
Warn about changing password and language on demo
issue9296
review307551002
diffstat:
templates/download.html | 75 +++++++++++++++++++++++++-----------------------
1 files changed, 39 insertions(+), 36 deletions(-)
diffs (85 lines):
diff -r a7dff2b958f7 -r 4bbf0565fad7 templates/download.html
--- a/templates/download.html Mon May 04 17:51:55 2020 +0200
+++ b/templates/download.html Wed May 06 14:28:32 2020 +0200
@@ -37,42 +37,45 @@
<p>We host a public shared demo server.
It is filled with some example data that gets reset every day.</p>
<div class="row">
- <table class="table table-sm col-xl-6 order-xl-2">
- <thead class="thead-light">
- <tr>
- <td></td>
- <th scope="col">User name</th>
- <th scope="col">Password</th>
- </tr>
- </thead>
- <tbody>
- <tr>
- <th scope="row">English</th>
- <td>demo</td>
- <td>demo</td>
- </tr>
- <tr>
- <th scope="row">Español</th>
- <td>demo_es</td>
- <td>demo</td>
- </tr>
- <tr>
- <th scope="row">Français</th>
- <td>demo_fr</td>
- <td>demo</td>
- </tr>
- <tr>
- <th scope="row">Deutsch</th>
- <td>demo_de</td>
- <td>demo</td>
- </tr>
- <tr>
- <th scope="row">Administrator</th>
- <td>admin</td>
- <td>admin</td>
- </tr>
- </tbody>
- </table>
+ <div class="col-xl-6 order-xl-2">
+ <table class="table table-sm">
+ <thead class="thead-light">
+ <tr>
+ <td></td>
+ <th scope="col">User name</th>
+ <th scope="col">Password</th>
+ </tr>
+ </thead>
+ <tbody>
+ <tr>
+ <th scope="row">English</th>
+ <td>demo</td>
+ <td>demo</td>
+ </tr>
+ <tr>
+ <th scope="row">Español</th>
+ <td>demo_es</td>
+ <td>demo</td>
+ </tr>
+ <tr>
+ <th scope="row">Français</th>
+ <td>demo_fr</td>
+ <td>demo</td>
+ </tr>
+ <tr>
+ <th scope="row">Deutsch</th>
+ <td>demo_de</td>
+ <td>demo</td>
+ </tr>
+ <tr>
+ <th scope="row">Administrator</th>
+ <td>admin</td>
+ <td>admin</td>
+ </tr>
+ </tbody>
+ </table>
+ <p class="text-warning">This is a shared server, so please do not
change the password or the user's language.</p>
+ </div>
<div class="col-xl-4 order-xl-1"><a href="//demo.tryton.org/"
class="btn btn-primary text-white mx-auto mt-3">Launch the demo</a></div>
</div>
</section>