-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Expand file tree
/
Copy pathlicenses-template.html
More file actions
85 lines (80 loc) · 3.29 KB
/
licenses-template.html
File metadata and controls
85 lines (80 loc) · 3.29 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
<!DOCTYPE html>
<head>
<meta charset="utf-8">
<meta name="viewport"
content="width=device-width, initial-scale=1">
</head>
<body>
<h1 id="package-name">
<a href="https://github.com/Authenticator-Extension">
Authenticator Extension
</a>
</h1>
<div class="licenses">
<h2>Acknowledgements</h2>
<p>Google and Google Drive are trademarks of Google LLC.</p>
<p>
<a target="_blank" href="https://github.com/FortAwesome/Font-Awesome">
Font Awesome Free
</a> - Licensed under CC BY 4.0
</p>
<p>
<a target="_blank" href="http://www.droidfonts.com/">
Droid Sans Mono
</a> - Copyright Steve Matteson. Licensed under the Apache License.
</p>
<p>
Thanks to
<a target="_blank" href="https://github.com/multiwebinc">Mike Robinson</a>
<3
</p>
<p>
We would like to extend our heartfelt thanks to Laurent, the Chief Information Security Officer (CISO) of the University of Luxembourg, for the invaluable support and contribution to this project. During the development process, the CISO team provided critical security recommendations that helped us identify and address potential vulnerabilities, significantly enhancing the security and reliability of the project.
</p>
<p>
We especially want to acknowledge the University of Luxembourg's information security team for their selfless contribution, which not only facilitated the progress of this project but also had a positive impact on the broader open-source community. We recognize that the success of open-source software depends heavily on collaboration and support from various stakeholders, and the involvement of the University of Luxembourg has allowed us to offer a more secure and dependable product to a wider audience.
</p>
<p>
We understand that while open-source software is free, maintaining and improving these projects requires significant resources. The University of Luxembourg’s information security team has demonstrated their strong commitment to the open-source community, contributing not just within their university but to users and developers globally. We hope this acknowledgment will help them continue to secure the support and resources necessary to further advance open-source initiatives.
</p>
<p>
Once again, we express our sincere gratitude to the University of Luxembourg's CISO team for their valuable advice and assistance.
</p>
<p><a target="_blank" href="qrdebug.html">QR Debugging</a></p>
{{#renderLicenses}}
<h3>
{{#pkgs}}
{{#homepage}}<a href="{{{homepage}}}">{{/homepage}}{{name}}{{#homepage}}</a>{{/homepage}}{{#comma}}, {{/comma}}
{{/pkgs}}
</h3>
<blockquote>
{{text}}
</blockquote>
{{/renderLicenses}}
</div>
<style>
.licenses blockquote {
white-space: pre-wrap;
background-color: whitesmoke;
padding-left: 1rem;
padding-right: 1rem;
display: inline-block;
width: 50%;
}
@media only screen and (max-width: 768px) {
.licenses blockquote {
width: 100%;
margin: 0px;
}
}
@media only screen and (min-width: 768px) {
body {
margin-left: 10vw;
}
}
.licenses h3,
#package-name {
font-family: sans-serif;
}
</style>
</body>