diff options
| author | michael pereira | 2011-03-21 10:52:51 +0100 |
|---|---|---|
| committer | michael pereira | 2011-03-21 10:52:51 +0100 |
| commit | 3a59301fdf10fcc0ecc3a56db18f3a36cc0c1aac (patch) | |
| tree | d70593ed8261f466b41d21731421dfb6489d7dfa /send-post.html | |
| parent | Preboot Controller eingerichtet (diff) | |
| parent | Login in User Module (diff) | |
| download | pbs2-3a59301fdf10fcc0ecc3a56db18f3a36cc0c1aac.tar.gz pbs2-3a59301fdf10fcc0ecc3a56db18f3a36cc0c1aac.tar.xz pbs2-3a59301fdf10fcc0ecc3a56db18f3a36cc0c1aac.zip | |
zfproject
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> |
