I am trying to overwrite the form.php file for the 'concrete' authentification type. I can make it work if I place the form.php file in the /application/authentication/concrete directory, but not from within my theme package directory.
<?php foreach ($activeAuths as $auth): ?>
<div data-handle="<?= $auth->getAuthenticationTypeHandle(); ?>" class="authentication-type authentication-type-<?= $auth->getAuthenticationTypeHandle(); ?>">
<?php $auth->renderForm($authTypeElement ?: 'form', $authTypeParams ?: array()); ?>
</div>
<?php endforeach; ?>
If I try to load another form (by replacing the second parameter in the renderForm method) nothing happens.
Any ideas how to make c5 aware of the override?