[Zope] how can i create a new user without useing the management screen

Daniel G. Rusch drusch@globalcrossing.com
Mon, 13 Dec 1999 10:42:30 -0600


This should help, remember roles is a list

<dtml-call "REQUEST.set('name', userName)">
<dtml-call "REQUEST.set('password', password)">
<dtml-call "REQUEST.set('confirm', confirm)">
<dtml-call "REQUEST.set('roles', roles)">
<dtml-call "acl_users.manage_users(submit='Add', REQUEST=REQUEST)">

DR