aboutsummaryrefslogtreecommitdiff
path: root/template/reclaim/index.html.j2
diff options
context:
space:
mode:
Diffstat (limited to 'template/reclaim/index.html.j2')
-rw-r--r--template/reclaim/index.html.j2102
1 files changed, 102 insertions, 0 deletions
diff --git a/template/reclaim/index.html.j2 b/template/reclaim/index.html.j2
new file mode 100644
index 00000000..c52b9ad6
--- /dev/null
+++ b/template/reclaim/index.html.j2
@@ -0,0 +1,102 @@
1{% extends "common/base.j2" %}
2{% block body_content %}
3<div class="container">
4 <div class="row">
5 <div class="container text-center">
6 <img style="width:50%" src="{{ url_static('images/reclaim_logo.png') }}" alt="reclaimID" />
7 <br/>
8 <p class="mt-4">{{ _("Self-sovereign, Decentralised Identity Management and Personal Data Sharing") }}</p>
9 </div>
10 </div>
11</div>
12<div class="container-fluid greybox">
13 <div class="container">
14 <div class="row">
15 <div class="col-lg-2"></div>
16 <div class="col-lg-6">
17 <section>
18 <h2>{{ _("Self-sovereign") }}</h2>
19 <p>
20 {% trans %}
21 You manage your identities and attributes locally on your computer. No need to trust a third party service with your data.
22 {% endtrans %}
23 </p>
24 </section>
25 </div>
26 <div class="col-lg-3 homepageicon">
27 <span class="fas fa-fist-raised"></span>
28 </div>
29 </div>
30 </div>
31</div>
32<div class="container-fluid">
33 <div class="container">
34 <div class="row">
35 <div class="col-lg-2 homepageicon">
36 <span class="fas fa-project-diagram"></span>
37 </div>
38 <div class="col-lg-6">
39 <section>
40 <h2>{{ _("Decentralized") }}</h2>
41 <p>
42 {% trans %}
43 You can share your identity attributes securely over a decentralized name system. This allows your friends to access your shared data without the need of a trusted third party.
44 {% endtrans %}
45 </p>
46 </section>
47 </div>
48 </div>
49 </div>
50</div>
51
52<div class="container-fluid greybox">
53 <div class="container">
54 <div class="row">
55 <div class="col-lg-2"></div>
56 <div class="col-lg-6">
57 <section>
58 <h2>{{ _("Standard-compliant") }}</h2>
59 <p>
60 {% trans %}
61 You can use OpenID Connect to integrate reclaim in your web sites.
62 {% endtrans %}
63 </p>
64 </section>
65 </div>
66 <div class="col-lg-3 homepageicon">
67 <span class="fab fa-openid"></span>
68 </div>
69 </div>
70 </div>
71</div>
72<hr/>
73<div class="container-fluid">
74 <div class="container">
75 <div class="row">
76 <div class="col-md-4 mt-1">
77 <a class="frontpage btn btn-primary btn-lg" href="{{ url_localized('reclaim/tech.html') }}"><i class="fas fa-cubes"></i><br/>{{ _("Technology") }}</a>
78 </div>
79 <div class="col-md-4 mt-1">
80 <a class="frontpage btn btn-primary btn-lg" href="{{ url_localized('reclaim/motivation.html') }}"><i class="fas fa-fire"></i><br/>{{ _("Motivation") }}</a>
81 </div>
82 <div class="col-md-4 mt-1">
83 <a class="frontpage btn btn-primary btn-lg" href="{{ url_localized('reclaim/faq.html') }}"><i class="fas fa-question"></i><br/>{{ _("FAQ") }}</a>
84 </div>
85
86 </div>
87 <div class="row">
88 <div class="col-md-4 mt-1">
89 <a class="frontpage btn btn-primary btn-lg" href="{{ url_localized('reclaim/users.html') }}"><i class="fas fa-user"></i><br/>{{ _("For users") }}</a>
90 </div>
91 <div class="col-md-4 mt-1">
92 <a class="frontpage btn btn-primary btn-lg" href="{{ url_localized('reclaim/websites.html') }}"><i class="fas fa-globe"></i><br/>{{ _("For websites") }}</a>
93 </div>
94 <div class="col-md-4 mt-1">
95 <a class="frontpage btn btn-primary btn-lg" href="{{ url_localized('reclaim/idps.html') }}"><i class="fas fa-users"></i><br/>{{ _("For IdPs") }}</a>
96 </div>
97 </div>
98 </div>
99</div>
100
101
102{% endblock body_content %}