participate.html 1.3 KB

123456789101112131415161718192021222324252627282930313233
  1. {% extends "base.html" %}
  2. {% block content %}
  3. <h2>I want to participate!</h2>
  4. <p>This tool relies on a pool of workers, all over dn42, that process
  5. requests, perform ping measurements, and report back the results. You're
  6. welcome to add your own machines to the pool!</p>
  7. <h3>Registering a worker</h3>
  8. <p>You need to separately register each computer that will provide
  9. measurements. Manual validation is performed for each registration.</p>
  10. <p>The contact information is free-form, and will be shown to users when
  11. they launch measurements. This allows users to contact you if they want
  12. to peer.</p>
  13. <form action="/create/participant" method="POST">
  14. Machine name (required): <input type="text" name="name" /><br />
  15. Mean of contacting you, like IRC nick, mail address, ... (optional): <input type="text" name="contact" /><br />
  16. Country code where this machine is located (optional): <input type="text" name="country" /><br />
  17. Free-form comment, like tunnel technology (GRE, OpenVPN, ...), or things like &quot;very shitty DSL&quot; (optional): <input type="text" name="comment" /><br />
  18. <input type="submit" value="Register" />
  19. </form>
  20. <h3>Measurement script</h3>
  21. <p>The measurement script can be accessed <a href="/script.sh">here</a>.
  22. You need to edit the UUID.</p>
  23. {% endblock %}