-
Notifications
You must be signed in to change notification settings - Fork 1
/
init.html
executable file
·41 lines (31 loc) · 1.33 KB
/
init.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
<HTML>
<HEAD>
<TITLE>MEDIator Data Federation System</TITLE>
</HEAD>
<CENTER>
<div class="container">
<h2>Create Replica Sets</h2>
<div class="btn-group">
<button type="button" onclick="location.href='searchSeries.html' ">Search and Create</button>
<button type="button" onclick="location.href='createReplicaSet.html' ">Create</button>
<button type="button" onclick="location.href='duplicate.html' ">Duplicate</button>
</div>
</div>
<div class="container">
<h2>Query Users and Replica Sets</h2>
<div class="btn-group">
<button type="button" onclick="location.href='listUsers.html' ">Users</button>
<button type="button" onclick="location.href='listRs.html' ">User Replica sets</button>
<button type="button" onclick="location.href='queryRetrieve.html' ">Replica Set</button>
</div>
</div>
<div class="container">
<h2>Update Replica Sets</h2>
<div class="btn-group">
<button type="button" onclick="location.href='updateReplicaSet.html' ">Update</button>
<button type="button" onclick="location.href='appendReplicaSet.html' ">Append</button>
<button type="button" onclick="location.href='delete.html' ">Delete</button>
</div>
</div>
</CENTER>
</HTML>