about.html 1.7 KB

1234567891011121314151617181920212223242526272829303132
  1. {% extends "layout.html" %}
  2. {% block body %}
  3. <div class=mycard>
  4. <div class="mycard-header">
  5. <h1>About the project</h1>
  6. </div>
  7. <div class="mycard-body about_mycard">
  8. This project is a completely new blockchain-based coin, with P2P networking, a consensus mechanism and a wallet
  9. interface.<br>
  10. The goal of the project is to provide a framework that is easy to modify for people who want to develop
  11. proof-of-concepts for blockchain-based technology.<br><br>
  12. DO NOT USE THIS AS A REAL CURRENCY TO SEND, RETRIEVE, OR STORE ACTUAL MONEY! <br>
  13. While we do not currently know of any way to do so, there are almost certainly bugs in this implementation that
  14. would allow anyone to create money out of the blue or take yours away from you.
  15. <br>
  16. <br>
  17. You can find the sourcecode on <a href="https://github.com/ChaAC-FAU/labchain">GitHub.</a>
  18. And the documentation on <a href="http://labchain.readthedocs.io/en/latest/">Readthedocs.io.</a>
  19. <br>
  20. <br>
  21. <a target="_blank" href="https://www.fau.de//"><img class="img-fluid" width="40%" src="{{ url_for('static', filename='Friedrich-Alexander-Universität_Erlangen-Nürnberg_logo.svg')}}"></a>
  22. <a target="_blank" href="https://www.chaac.tf.fau.de/"><img class="img-fluid" width="40%" src="{{ url_for('static', filename='ChaAC-logo-black.png')}}"></a>
  23. <br>
  24. <br>
  25. LabChain Explorer made by:<br>
  26. ©2018 Patrick Dolinic, Jonas Heinrich, Lukas Mahlmeister, Martin Mecklenburg<br>
  27. <br>
  28. Based on the ChaAC Coin by:<br>
  29. ©2017 Jonas Herzig, Malte Kraus
  30. </div>
  31. </div>
  32. {% endblock %}