1234567891011121314151617181920212223242526272829303132333435363738394041 |
- {% 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 class="participant_form" action="/create/participant" method="POST">
- <label for="name">Machine name (required)</label>
- <input type="text" name="name" id="name" /><br />
- <label for="contact">Mean of contacting you, like IRC nick, mail address, ... (optional)</label>
- <input type="text" name="contact" id="contact" /><br />
- <label for="country">Country code where this machine is located (optional)</label>
- <input type="text" name="country" id="country" /><br />
- <label for="comment">Free-form comment, like tunnel technology (GRE, OpenVPN, ...), or things like "very shitty DSL" (optional)</label>
- <input type="text" name="comment" id="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 %}
|