]> git.ipfire.org Git - ipfire.org.git/blob - templates/fireinfo/index.html
722838acab8534e87c53a1232532a07002b59451
[ipfire.org.git] / templates / fireinfo / index.html
1 {% extends "base.html" %}
2
3 {% block title %}Fireinfo{% end block %}
4
5 {% block body %}
6 <div class="container">
7 <section class="features-content col-12">
8 <h2 class="display-2 text-center mb-0">{{ _("Fireinfo") }}</h2>
9
10 <p class="lead text-center">
11 <strong>Fireinfo</strong> is a tool that anonymously collects statistical
12 data from IPFire systems.
13 </p>
14
15 <p>
16 These data should help the developers to learn
17 which hardware is used most often to run an IPFire system, but is also
18 handy when it comes to debugging hardware problems.
19 </p>
20
21 <div class="row mt-6">
22 <div class="col">
23 <p>
24 Please enter the profile ID of your system, which can be found
25 on the fireinfo page on the web interface, to see your profile:
26 </p>
27 </div>
28 <div class="col">
29 <form class="form-inline" method="POST" action="" role="form">
30 <div class="form-group">
31 <label class="sr-only" for="profileId">{{ _("Profile ID") }}</label>
32 <input type="text" class="form-control" name="profile_id" id="profileId"
33 value="" placeholder="{{ _("Profile ID") }}">
34 <button type="submit" class="btn btn-default">{{ _("Show") }}</button>
35 </div>
36 {% raw xsrf_form_html() %}
37 </form>
38
39 <p><a href="/profile/random" class="text-muted">{{ _("Random profile") }}</a></p>
40 </div>
41 </div>
42 </section>
43 </div>
44 {% end block %}