-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.html
87 lines (69 loc) · 2.9 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
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
86
87
<!doctype html>
<html lang="fr">
<head>
<meta charset="utf-8">
<meta name="referrer" value="same-origin">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Anonymisation des fichiers <DocumentBudgetaire> manipulés par Totem</title>
<meta name="description" content=" ">
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
*{
box-sizing: border-box;
}
main, footer{
width: 100%;
padding: 0 20%;
}
.anony-zone{
display: flex;
flex-direction: row;
justify-content: space-around;
align-items: flex-start;
}
.input, .output{
border: solid 1px #888;
border-radius: 3em;
padding: 2em;
width: 40%;
min-height: 9em;
}
h3{
margin-top: 0;
}
</style>
<script defer src="./build/bundle.js"></script>
</head>
<body>
<main>
<h1>Anonymisation des fichiers <code><DocumentBudgetaire></code> du projet Actes Budgétaires</h1>
<p>
Les fichiers <code><DocumentBudgetaire></code> peuvent contenir des données à caractère personnel.
La publication de ces fichiers pourrait porter atteinte à la vie privée de ces personnes.
</p>
<p>
Le présent outil occulte les parties sensibles des fichiers <code><DocumentBudgetaire></code> d'une manière qui
permet de respecter l'<a href="https://www.legifrance.gouv.fr/codes/article_lc/LEGIARTI000031367719">Article L311-7
du <abbr title="Code des relations entre le public et l'administration">CRPA</abbr></a>
</p>
<h2>Anonymiser quelques fichiers</h2>
<div class="anony-zone">
<div class="input">
<h3>Déposer vos fichiers ici</h3>
<input type="file" multiple>
</div>
<div class="output">
<h3>Fichiers anonymisés</h3>
</div>
</div>
<h2>Anonymiser un grand nombre de fichiers</h2>
<p>Pour anonymiser un grand nombre de fichiers, <a href="https://github.com/dtc-innovation/anonymisation-document-budgetaire/blob/master/README.md#outil-en-ligne-de-commande">une version installable sur un poste informatique est disponible.</a>
</main>
<footer>
<ul>
<li>Licence MIT. Utilisations et modifications gratuites.
<li><a href="https://github.com/dtc-innovation/anonymisation-document-budgetaire/">Code source</a>
</ul>
</footer>
</body>
</html>