The three overall required parameters of the PM services are:

  • Username
  • E-mail address
  • Full Name

It's a good idea to pre-populate these fields with an AD look up based on current user. Also make the Username filed read only.

One final note is to add client side validation to make sure all the fields are completed.

 

 

 

Example Form

<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"/>
	</form>
</body>
</html>