// See if they have submitted or just need the form
if(request.method == "POST"){
// Assign the client properties their values
client.name = request.name;
client.email = request.email;
client.phone = request.phone;
// Write the user's information to the page
write('Hello ' + client.name + '! ');
write('Please confirm your email, ' + client.email + ', and ');
write('phone number, ' + client.phone);
}else{
// If this page was called and a form was not submitted, then write the
write('');
}