blob: d6575527e3d11de2115ff5c68649f14b8a822c65 (
plain) (
blame)
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
|
<html>
<title>Post-Data</title>
<style>
fieldset{margin-bottom:20px;border:none;border-top:1px solid red;}
fieldset legend{color:red;}
label{float:left;width:125px;}
</style>
<body>
<fieldset>
<legend>localhost</legend>
<form action='http://localhost/' method='post'>
<label>BootisoID</label>
<input type='text' name='bootisoID' value='1'></br>
<label>Mac</label>
<input type='text' name='mac' value='00:0c:29:01:63:88'></br>
<label>Hardwarehash</label>
<input type='text' name='hardwarehash' value='51685132196851652186121869413216'></br>
<input type='submit' value='Test'>
</form>
</fieldset>
<fieldset>
<legend>localhost:81</legend>
<form action='http://localhost:81/' method='post'>
<label>BootisoID</label>
<input type='text' name='bootisoID' value='1'></br>
<label>Mac</label>
<input type='text' name='mac' value='00:0c:29:01:63:88'></br>
<label>Hardwarehash</label>
<input type='text' name='hardwarehash' value='51685132196851652186121869413216'></br>
<input type='submit' value='Test'>
</form>
</fieldset>
</body>
</html>
|