]> git.ipfire.org Git - people/shoehn/ipfire.org.git/blob - templates/fireinfo/index.html
fireinfo: Center text on the index page
[people/shoehn/ipfire.org.git] / templates / fireinfo / index.html
1 {% extends "base.html" %}
2
3 {% block title %}Fireinfo{% end block %}
4
5 {% block body %}
6 {% if lang == "de" %}
7 <p class="lead ac">
8 <strong>Fireinfo</strong> ist ein Tool, welches anonym Informationen
9 über die in IPFire-Systemen verbaute Hardware sammelt.
10 </p>
11 <p class="lead ac">
12 Diese Daten sollen den Entwicklern helfen zu erkennen, welche
13 Hardware am häufigsten eingesetzt wird und sind auch hilfreich
14 um Hardware-Probleme ausfindig zu machen.
15 </p>
16 {% else %}
17 <p class="lead ac">
18 <strong>Fireinfo</strong> is a tool that anonymously collects statistical
19 data from IPFire systems.
20 </p>
21 <p class="lead ac">
22 These data should help the developers to learn
23 which hardware is used most often to run an IPFire system, but is also
24 handy when it comes to debugging hardware problems.
25 </p>
26 {% end %}
27
28 <hr>
29
30 <div class="row">
31 <div class="col-lg-8 col-md-8 col-lg-offset-2 well ac">
32 {% if lang == "de" %}
33 <p>
34 Bitte geben Sie die Profil-ID von ihrem System ein, welche
35 Sie auf der Fireinfo-Seite des Webinterfaces finden können:
36 </p>
37 {% else %}
38 <p>
39 Please enter the profile ID of your system, which can be found
40 on the fireinfo page on the web interface, to see your profile:
41 </p>
42 {% end %}
43
44 <hr>
45
46 <form class="form-inline" method="POST" action="" role="form">
47 <div class="form-group">
48 <label class="sr-only" for="profileId">{{ _("Profile ID") }}</label>
49 <input type="text" class="form-control" name="profile_id" id="profileId"
50 value="" placeholder="{{ _("Profile ID") }}">
51 <button type="submit" class="btn btn-default">{{ _("Show") }}</button>
52 </div>
53 {% raw xsrf_form_html() %}
54 </form>
55
56 <br>
57
58 <a href="/profile/random" class="text-muted">{{ _("Random profile") }}</a>
59 </div>
60 </div>
61 {% end block %}