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