-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
39 lines (39 loc) · 1.65 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Data Population Tool</title>
<link rel="stylesheet" href="style.css"/>
</head>
<body>
<div class="form">
<h1> Data Population Tool</h1>
<form method="POST" action="Populate">
<table>
<tr> <td> orgId </td> <td> : </td> <td><input name="orgId" type="text"/> </td> </tr>
<tr> <td> iamURL </td> <td> : </td> <td><input name="iamurl" type="text"/> </td> </tr>
<tr> <td> EmailAddress </td> <td> : </td> <td> <input name="emailId" type="text"/> </td> </tr>
<tr> <td> OAuth Token </td> <td> : </td> <td><input name="oauthtoken" type="text"/> </td> </tr>
<tr> <td> clientId </td> <td> : </td> <td> <input name="clientid" type="text"/> </td> </tr>
<tr> <td> clientSecret </td> <td> : </td> <td><input name="clientsecret" type="text"/> </td> </tr>
<tr> <td> DeskURL </td> <td> : </td> <td> <input name="deskurl" type="text"/> </td> </tr>
<tr> <td> Module </td> <td> : </td>
<td> <select name="module">
<option value="Tickets"> Tickets </option>
<option value="Contacts"> Contacts </option>
<option value="Accounts"> Accounts </option>
<option value="Agents"> Agents </option>
<option value="Departments">Departments </option>
<option value="Tasks"> Tasks </option>
<option value="Events"> Events </option>
<option value="TimeTracking"> TimeTracking </option>
<option value="Products"> Products </option>
<option value="Calls"> Calls </option>
<option value="Fields"> Fields(PicList) </option>
</select> </td> </tr>
<tr> <td colspan="3"> <input type="submit" value="populate"/> </td> </tr>
</table>
</form>
</div>
</body>
</html>