signuptest.html 994 Bytes
<?xml version="1.0" encoding="iso-8859-1"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
	<head>
		<title>Signuptest</title>
	</head>

	<body> 
		<form action="http://localhost:11212/signup/" method="POST">
			<label for="email">email:</label>
			<input id="email" name="email" type="text" />
			<br />
			<label for="password">password:</label>
			<input id="password" name="password" type="password" />
			<br />
			<label for="pwrepeat">repeat password:</label>
			<input id="pwrepeat" name="pwrepeat" type="password" />
			<br />
			<label for="firstname">firstname:</label>
			<input id="firstname" name="firstname" type="text" />
			<br />
			<label for="surname">surname:</label>
			<input id="surname" name="surname" type="text" />
			<br />
			<input name="submit" type="submit" />
		</form>
	</body>
</html>

<!-- vim: set ts=4 sw=4: -->