-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathindex.html
39 lines (28 loc) · 1.11 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 lang="en">
<head>
<title>Document</title>
</head>
<body>
<form action="http://localhost:8080"
enctype="multipart/form-data" method="post">
<label for="claimFile">Claim File:</label>
<input type="file" name="claimFile" />
<label for="executed_by">Executed by:</label>
<input type="text" id="executed_by" name="executed_by" />
<label for="partner_name">Partner name:</label>
<input type="text" id="partner_name" name="partner_name" />
<label for="decoded_password">Password:</label>
<input type="password" id="decoded_password" name="decoded_password" />
<input type="submit" value="submit" />
</form>
</br> </br>
<form action="http://localhost:8080" method="get">
<label for="partner_name">Partner name:</label>
<input type="text" id="partner_name" name="partner_name" />
<label for="decoded_password">Password:</label>
<input type="password" id="decoded_password" name="decoded_password" />
<button type="submit">Get Collector</button>
</form>
</body>
</html>