Accrual to Clinical Trials
Space shortcuts
Space Tools
Skip to end of metadata
Go to start of metadata

Required Fields

 

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.

The following is a screenshot of an example user registration form which captures the three required parameters for the PM cell:

Example Form

The following is HTML code for an example user registration form.

Example User Reg HTML
<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>

The form submits three input fields usernameemail, and fullname to 'register.php' via the POST method. See the Registration Processor (PHP) page for details on how these parameters are captured and used.

 

  • No labels