I have the following code:
<?php
echo $form->create('User', array('url' => array('controller' => 'users', 'action' =>'login')));
echo $form->input('User.username');
echo $form->input('User.password');
echo $form->end('Login');
?>
and that creates a form that looks similar to this:
username
[TextBox]
password
[TextBox]
and I want it to look like this:
username [TextBox] password [TextBox]
Is there an option or something I can use to do this?
After I had struggled with css-styles I end up using tables like this: