-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathenroll.html
More file actions
executable file
·60 lines (60 loc) · 1.83 KB
/
enroll.html
File metadata and controls
executable file
·60 lines (60 loc) · 1.83 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
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="content-type" content="text/html;charset=UTF-8">
<title>INTER-Mediator - Sample - Enrollment</title>
<script type="text/javascript" src="enroll.php"></script>
<script type="text/javascript" src="enroll.js"></script>
</head>
<body>
<div id="wrapper">
<h1>Enrollment with My Number Card</h1>
<div><a href="index.html">← Top Page</a></div>
<div>
<button onclick="javascript:INTERMediatorOnPage.logout()">Logout</button>
</div>
<p class="newmsg">以下の情報で新たにユーザを作成しました。現在、このユーザでログインしている状態です。</p>
<p class="updatemsg">以下のユーザはすでに存在するので、パスワードをリセットしました。現在、このユーザでログインしている状態です。</p>
<h2>Login User Info</h2>
<table>
<tbody>
<tr>
<th>username</th>
<td data-im="authuser@username"></td>
</tr>
<tr>
<th>password</th>
<td data-im="authuser@initialPassword"></td>
</tr>
<tr>
<th>realname</th>
<td data-im="authuser@realname"></td>
</tr>
<tr>
<th>email</th>
<td data-im="authuser@email"></td>
</tr>
<tr>
<th>address</th>
<td data-im="authuser@address"></td>
</tr>
<tr>
<th>birthdate</th>
<td data-im="authuser@birthdate"></td>
</tr>
<tr>
<th>gender</th>
<td data-im="authuser@gender"></td>
</tr>
<tr>
<th>sub</th>
<td data-im="authuser@sub"></td>
</tr>
</tbody>
</table>
</div>
<footer>
<small>INTER-Mediator ©2025</small>
</footer>
</body>
</html>