-
Notifications
You must be signed in to change notification settings - Fork 1
/
done-nl.php
57 lines (48 loc) · 1.76 KB
/
done-nl.php
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
<!DOCTYPE html>
<html lang="nl">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<script type="text/javascript">
let irma_server_url = "<?= IRMA_SERVER_URL ?>";
let lang = "<?= LANG ?>";
</script>
<link href="../css/bootstrap.min.css" rel="stylesheet" type="text/css" />
<script type="text/javascript" src="../js/jquery.min.js"></script>
<script type="text/javascript" src="../js/irma.js" async defer></script>
<script type="text/javascript" src="../js/verify.js"></script>
<title><?= PROVIDER_NAME ?> attributen geladen</title>
</head>
<body>
<div class="container">
<div class="row">
<div class="col-xs-12 col-md-8 col-lg-6 col-md-offset-2 col-lg-offset-3">
<h2><?= PROVIDER_NAME ?> attributen zijn geladen</h2>
<div class="alert alert-warning hide" role="alert">
<strong>Geannuleerd</strong><br/>
<small class="message"></small>
</div>
<div class="alert alert-danger hide" role="alert">
<strong>Fout</strong>: kan credential niet tonen.<br/>
<small class="message"></small>
</div>
<p>
Gefeliciteerd! Uw attributen zijn nu in uw IRMA app geladen. Daar zijn ze nu zichtbaar.
</p>
<p>
U kunt deze attributen gebruiken op iedere website die ze accepteert.<br/>
Door op de knop hieronder te klikken kunt u dit testen; u toont dan uw naam-attribuut.
</p>
<p>
<button id="verify_btn" class="btn btn-primary">Toon naam-attribuut</button>
<a href="/uitgifte/">Keer terug naar de attribuut-uitgifte pagina</a>
</p>
<div id="token-content" class="hide">
<h3>Resultaat</h3>
<p><strong>Naam</strong>: <span class="name"></span></p>
</div>
</div>
</div>
</div>
</body>
</html>