branch develop updated (bea5382f -> 18a61096)
This is an automated email from the git hooks/post-receive script. New change to branch develop in repository pollen. See https://gitlab.nuiton.org/chorem/pollen.git from bea5382f Vérification des traductions, Séparation des traductions (1 fichier par langue) rechargement de type de vote à la modification de la locale (ref #123) new c3efed1b Add an offer page new 18a61096 Merge branch 'develop' of gitlab.nuiton.org:chorem/pollen into develop The 2 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference. Detailed log of new commits: commit 18a61096f62c53b532e61b7e69d8b657817c85ce Merge: c3efed1b bea5382f Author: Samuel Maisonneuve <maisonneuve@codelutin.com> Date: Wed Sep 6 18:28:27 2017 +0200 Merge branch 'develop' of gitlab.nuiton.org:chorem/pollen into develop commit c3efed1b8f853a300cdc53758607cc0035e8f464 Author: Samuel Maisonneuve <maisonneuve@codelutin.com> Date: Wed Sep 6 18:27:45 2017 +0200 Add an offer page Summary of changes: pollen-ui-riot-js/src/main/web/homeCL/offers.html | 74 +++++++++++++++++++++++ pollen-ui-riot-js/src/main/web/homeCL/style.css | 14 ++++- 2 files changed, 87 insertions(+), 1 deletion(-) create mode 100644 pollen-ui-riot-js/src/main/web/homeCL/offers.html -- To stop receiving notification emails like this one, please contact chorem.org SCM administrator <admin+scm@chorem.org>.
This is an automated email from the git hooks/post-receive script. New commit to branch develop in repository pollen. See https://gitlab.nuiton.org/chorem/pollen.git commit c3efed1b8f853a300cdc53758607cc0035e8f464 Author: Samuel Maisonneuve <maisonneuve@codelutin.com> Date: Wed Sep 6 18:27:45 2017 +0200 Add an offer page --- pollen-ui-riot-js/src/main/web/homeCL/offers.html | 74 +++++++++++++++++++++++ pollen-ui-riot-js/src/main/web/homeCL/style.css | 14 ++++- 2 files changed, 87 insertions(+), 1 deletion(-) diff --git a/pollen-ui-riot-js/src/main/web/homeCL/offers.html b/pollen-ui-riot-js/src/main/web/homeCL/offers.html new file mode 100644 index 00000000..6ee773d7 --- /dev/null +++ b/pollen-ui-riot-js/src/main/web/homeCL/offers.html @@ -0,0 +1,74 @@ + +<link href="./home/style.css" rel="stylesheet" type="text/css"/> + +<div class="body-container"> + <div class="offer-info"> + <h2>Offre Standard</h2> + <p> + Utilisez librement pollen pour vos sondages personels jusqu'à 100 votants ! + Creez dès à présent un nouveau sondage, quelques <a href="#/poll/new/text">clics</a> suffisent ! + </p> + <p> + Vous souhaitez permettre à vos utilisateurs de répondre et voir les résultats d'un sondage directement sur votre site internet ? + Pollen met à votre disposition des apis permettant d'interagir avec vos sondages. + Consultez la documentation de l'<a href="#doc-api">api</a> pour en savoir plus. + </p> + <p> + Vous souhaitez conserver la maîtrise de vos données ?<br/> + Pollen est un logiciel libre, intallez votre propre instance et hébergez vous même vos données. + Consultez la documentation <a href="#doc-install">d'installation</a> pour en savoir plus. + </p> + </div> + <div class="offer-info"> + <h3>Offre "Business"</h3> + <p> + Vous êtes une entreprise, une association ou bien un particulier et vous souhaitez mener des sondages d'envergures ? Ou encore disposer de votre propre instance sans avoir à l'héberger ? + </p> + <p> + Avec l'offre "Business", profitez d'une instance pollen dédiée : + <ul> + <li>une base de données privée,</li> + <li>une interface de vote personnalisée à votre identité,</li> + <li>un nombre de votants illimité à vos sondages</li> + </ul> + </p> + <p>Avec l'offre "Business" profitez également d'un accès illimité aux apis Pollen.</p> + </div> + <table class="offer-info" style="width:100%"> + <tr> + <th>Offre</th> + <th>Standard</th> + <th>Business</th> + </tr> + <tr> + <td></td> + <td>Gratuit</td> + <td>100€ / mois</td> + </tr> + <tr> + <td>Faire un sondage</td> + <td>100 votants</td> + <td>illimité</td> + </tr> + <tr> + <td>Utilser les apis pollen</td> + <td>100 votants</td> + <td>illimité</td> + </tr> + <tr> + <td>Instance privée</td> + <td>x</td> + <td>✓</td> + </tr> + <tr> + <td>Interface personnalisée</td> + <td>x</td> + <td>✓</td> + </tr> + <tr> + <td>Sous-domaine personnalisé</td> + <td>x</td> + <td>✓</td> + </tr> + </table> +</div> diff --git a/pollen-ui-riot-js/src/main/web/homeCL/style.css b/pollen-ui-riot-js/src/main/web/homeCL/style.css index 4218a857..a8174c5a 100644 --- a/pollen-ui-riot-js/src/main/web/homeCL/style.css +++ b/pollen-ui-riot-js/src/main/web/homeCL/style.css @@ -23,10 +23,22 @@ margin: 30px auto; } -.pollen-info p { +.offer-info { + font-size: 1.5em; + max-width: 700px; + margin: 30px auto; + + text-align: justify; +} + +.pollen-info p, .offer-info p { margin: 10px 0; } +.offer-info ul { + margin-left: 1em; +} + .pollen { font-size: 1.4em; font-family: var(--title-font); -- To stop receiving notification emails like this one, please contact chorem.org SCM administrator <admin+scm@chorem.org>.
This is an automated email from the git hooks/post-receive script. New commit to branch develop in repository pollen. See https://gitlab.nuiton.org/chorem/pollen.git commit 18a61096f62c53b532e61b7e69d8b657817c85ce Merge: c3efed1b bea5382f Author: Samuel Maisonneuve <maisonneuve@codelutin.com> Date: Wed Sep 6 18:28:27 2017 +0200 Merge branch 'develop' of gitlab.nuiton.org:chorem/pollen into develop .../rest/api/PollenRestApiRequestFilter.java | 24 +- pollen-ui-riot-js/src/main/web/i18n.json | 1063 -------------------- pollen-ui-riot-js/src/main/web/i18n/en.json | 536 ++++++++++ pollen-ui-riot-js/src/main/web/i18n/fr.json | 536 ++++++++++ pollen-ui-riot-js/src/main/web/js/FetchService.js | 5 +- pollen-ui-riot-js/src/main/web/js/Poll.js | 10 + pollen-ui-riot-js/src/main/web/js/PollForm.js | 12 +- pollen-ui-riot-js/src/main/web/js/Session.js | 5 +- .../src/main/web/tag/poll/Poll.tag.html | 8 +- .../src/main/web/tag/poll/Settings.tag.html | 8 + 10 files changed, 1126 insertions(+), 1081 deletions(-) -- To stop receiving notification emails like this one, please contact chorem.org SCM administrator <admin+scm@chorem.org>.
participants (1)
-
chorem.org scm