blob: 28d14f642a1644a1da55d9e49ecc3e883f1cb1cf [file] [log] [blame]
cocoon.load("resource://org/apache/cocoon/woody/flow/javascript/woody2.js");
function registration() {
var form = new Form("forms/registration.xml");
// The showForm function will keep redisplaying the form until
// everything is valid
form.showForm("registration-display-pipeline");
var model = form.getModel();
var bizdata = { "username" : model.name }
cocoon.sendPage("registration-success-pipeline.jx", bizdata);
}