-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathaccountmanager.html
More file actions
72 lines (72 loc) · 2.04 KB
/
accountmanager.html
File metadata and controls
72 lines (72 loc) · 2.04 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
<!DOCTYPE html>
<!--
/*
* INTER-Mediator
* Copyright (c) INTER-Mediator Directive Committee (http://inter-mediator.org)
* This project started at the end of 2009 by Masayuki Nii msyk@msyk.net.
*
* INTER-Mediator is supplied under MIT License.
* Please see the full license for details:
* https://github.com/INTER-Mediator/INTER-Mediator/blob/master/dist-docs/License.txt
*/ -->
<html>
<head>
<meta http-equiv="content-type" content="text/html;charset=UTF-8">
<title>INTER-Mediator - Account</title>
<script src="accountmanager.php"></script>
<script src="accountmanager.js"></script>
</head>
<body>
<h1 style="font-weight:bold;color:blueviolet">Account Management System</h1>
New Password: <input id="inputpassword" type="text">
Set the new password and click "Set" button on each user.
<div id="IM_NAVIGATOR">Navigation Controls by INTER-Mediator</div>
<h2>User Accounts</h2>
<table>
<thead>
<tr>
<th>User Name</th>
<th>Hashed Password</th>
<th>Email</th>
<th>Real Name</th>
<th>sub</th>
<th>Address</th>
<th>Birthdate</th>
<th>Gender</th>
<th></th>
</tr>
</thead>
<tbody>
<tr>
<td>
<input data-im="authuser@username" type="text">
</td>
<td>
<input data-im="authuser@hashedpasswd" type="text" size="5">
<button onclick="setPassword($)" data-im="authuser@id@$onclick">Set</button>
</td>
<td>
<input data-im="authuser@email" type="text">
</td>
<td>
<span data-im="authuser@realname"></span>
</td>
<td>
<span data-im="authuser@sub"></span>
</td>
<td>
<span data-im="authuser@address"></span>
</td>
<td>
<span data-im="authuser@birthdate"></span>
</td>
<td>
<span data-im="authuser@gender"></span>
</td>
<!--<td><span data-im="authuser@belonging"></span></td>-->
<td></td>
</tr>
</tbody>
</table>
</body>
</html>