Accrual to Clinical Trials
Space shortcuts
Space Tools

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
languagexml
titleExample User Reg HTML
linenumberstrue
<html>
<head>
	<title>Example User Registration</title>
</head>
<body>
	Enter Your Information
	<form action="register.php" method="POST">
		Username: <input type="text" name="username" value="zzz"/><br/>
		E-mail address: <input type="text" name="email" value="zSheep@example.org"/><br/>
		Full Name: <input type="text" name="fullname" value="Sheep Z"/>
		<input type="submit" value="Complete Registration"/>
	</form>
</body>
</html>