Okay, so I know this is going to seem like a stupid question to a lot of people but I need some help on this code. On the client side, the login form is created by the following code. This code gets the login path, crsf token and all that stuff... I need to add class="form-signin" to the form but I have no idea how to do so.
I just want to form to have the default stuff, plus class="form-signin"
<?php
$this->WidgetClient->clear();
$this->Form->create();
if ($this->Html->ifSet($vars->forward_to))
$this->Form->fieldHidden("forward_to", $vars->forward_to);
?>
Question
MemoryX2
Okay, so I know this is going to seem like a stupid question to a lot of people but I need some help on this code. On the client side, the login form is created by the following code. This code gets the login path, crsf token and all that stuff... I need to add class="form-signin" to the form but I have no idea how to do so.
I just want to form to have the default stuff, plus class="form-signin"
Thanks
4 answers to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.