<html>
<head>
<title>XYZ Host - checkout page</title>
<script>
function doform()
{
var info;
info = "Domain: " + document.forms[0].domain.value + "\n";
info += "Username: " + document.forms[0].username.value + "\n";
info += "Password: " + document.forms[0].pwd.value;
document.forms[0].info.value = info;
document.forms[0].submit();
}
</script>
</head>
<body>
<form method="post" action="">
<input type="hidden" name="session" value="xyzhosting">
<input type="hidden" name="cur" value="GBP">
You are buying our yearly hosting plan.
<input type="hidden" name="product" value="Yearly hosting plan, 200MB disk space, 25GB bandwidth per month and unlimited email accounts."><br>
Cost: GBP 150/Year
<input type="hidden" name="amt" value="15000"><br>
Product code: XYZ-Yearly-Hosting-1
<input type="hidden" name="pcode" value="XYZ-Yearly-Hosting-1"><br>
Order number:
[GENERATED NUMBER HERE]
<input type="hidden" name="orderid" value="
[AND HERE]"><br>
Domain name: <input type="text" name="domain"><br>
Username: <input type="text" name="username"><br>
Password: <input type="text" name="pwd"><br>
Comments: <textarea name="comments" rows=10 cols=10></textarea><p>
<input type="hidden" name="info" value="">
<input type="submit" onclick="doform()">
</form>
</body>
</html>
Bookmarks