-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
50 lines (50 loc) · 2.06 KB
/
index.html
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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/ProfilePictures/star.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Sternfahrt Medaille 2024</title>
</head>
<body>
<div style="margin:auto; text-align:center;">
<h1 style="margin: auto; font-family: 'jost-semi', sans-serif;">
Sternfahrt Medaille 2024
</h1>
<h3 style="margin: auto; font-family: 'jost-semi', sans-serif;">
für die Teilnahme an der Rad-Sternfahrt 21.04.2024 in München
</h3>
<div class="pbg-container" style="margin: auto;"></div>
</div>
<script type="text/javascript"
src="https://unpkg.com/[email protected]/dist/profile-picture-generator.js"
integrity="sha384-26g7geqCMjr1i6cid56u5QUkDmm4Fs3hd+6zUGwkcfdrbSQ6pluSCQq85jga55Eb"
crossorigin="anonymous"></script>
<script type="application/javascript">
(function () {
window.ProfilePictureGenerator({
container: document.querySelector('.pbg-container'),
initialLanguage: 'de',
languages: {
de: {
name: 'German',
uploadButtonTitle: "Eigenes Profilbild generieren",
downloadButtonTitle: "Profilbild herunterladen",
imageAltText: "Generiertes Fridays for Future Profilbild",
fileName: "ProfilePicture.png",
templateUrl: "https://sternfahrtmuc.github.io/ProfilePictures/after_transparent.png",
imagePreview: "https://sternfahrtmuc.github.io/ProfilePictures/after_preview.png",
privacyNote: "Die ausgewählte Datei wird an keinen Server versendet. Die gesamte Bildgenerierung findet im Browser statt.",
privacyLinkText: "Datenschutzerklärung"
},
en: {
name: 'English',
templateUrl: "https://sternfahrtmuc.github.io/ProfilePictures/after_transparent.png",
imagePreview: "https://sternfahrtmuc.github.io/ProfilePictures/after_preview.png",
}
}
});
})();
</script>
</body>
</html>