I'm using Tank Auth (it's working fine), but I can't get the form validation function to work when I include any value in the variable array along with set_value. I need these values as a label for form fields--they tells the user what to enter in the field.
How can I keep Tank Auth's form validation functionality AND use a value in the value field?
$login = array(
'name' => 'login',
'id' => 'login',
'value' => set_value('login', 'Enter username'),
);