Forums / Developer / login module?
Leonardo López
Sunday 19 June 2005 7:00:04 am
Hi, im new using ezpublish and my english is not very well, the problem is that i make a pagelayout with various tables and only in one i put {$module_result.content} so the content show only in this table, i want to create a module in other table for login... how i can do it? is some module existing or i have to make the login module by myself with scripts? excuseme the dumb question and my english im really speak only spanish... thanks
Łukasz Serwatka
Monday 20 June 2005 11:53:53 pm
Hi Leonardo,
You can put this code in pagelayout to display login form:
<form action={"/user/login"|ezurl} method="post"> <input type="text" name="Login" value="" /><br /> <input type="password" name="Password" value="=" /> <input type="submit" name="LoginButton" value="Login" /> </form>
Personal website -> http://serwatka.net Blog (about eZ Publish) -> http://serwatka.net/blog
Tuesday 21 June 2005 6:14:52 am
thanks luke....!