diff options
author | Simon | 2011-03-19 18:11:02 +0100 |
---|---|---|
committer | Simon | 2011-03-19 18:11:02 +0100 |
commit | f17ab652a06ee8c186938647d7dec1d59113dc42 (patch) | |
tree | 8e6c9b8ee9c50e2d52076eb6e0f96d8102a58576 /send-post.html | |
parent | Filter funktioniert nun, FBGui IndexController angepasst (diff) | |
download | pbs2-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.html | 41 |
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> |