summaryrefslogtreecommitdiffstats
path: root/send-post.html
diff options
context:
space:
mode:
authorSimon2011-03-19 18:11:02 +0100
committerSimon2011-03-19 18:11:02 +0100
commitf17ab652a06ee8c186938647d7dec1d59113dc42 (patch)
tree8e6c9b8ee9c50e2d52076eb6e0f96d8102a58576 /send-post.html
parentFilter funktioniert nun, FBGui IndexController angepasst (diff)
downloadpbs2-f17ab652a06ee8c186938647d7dec1d59113dc42.tar.gz
pbs2-f17ab652a06ee8c186938647d7dec1d59113dc42.tar.xz
pbs2-f17ab652a06ee8c186938647d7dec1d59113dc42.zip
Jeder Filter muss immer einen FilterType mit Gruppe haben
Diffstat (limited to 'send-post.html')
-rw-r--r--send-post.html41
1 files changed, 32 insertions, 9 deletions
diff --git a/send-post.html b/send-post.html
index d2ac08e..d657552 100644
--- a/send-post.html
+++ b/send-post.html
@@ -1,12 +1,35 @@
<html>
-
-<form action='http://localhost:81/' method='post'>
-BootisoID <input type='text' name='bootisoID' value='1'></br>
-mac <input type='text' name='mac' value='00:0c:29:01:63:88'></br>
-hardwarehash <input type='text' name='hardwarehash' value='51685132196851652186121869413216'></br>
-<input type='submit' value='test'>
-</form>
-
-
+<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>