I'd like to divide the default/user.html forms into a body and footer part,
the body containing the fields the footer containing the cancel and submit
button, something like this:
<div class="form">
<div class="form-header">
<h3>Login with your Leonexus ID</h3>
</div> <!-- /form-header -->
<div class="form-body">
<h5>Enter your username and password</h5>
the form fields here
</div> <!-- /form-body -->
<div class="form-footer">
the form controls here
</div> <!-- /form-footer -->
</div> <!-- /form -->
Is there a way to split the form in these components?
Kind regards,
Annet