1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
|
<?php use_helper('I18N') ?>
<form action="<?php echo url_for('@sf_guard_signin') ?>" method="post">
<table>
<tbody>
<?php echo $form ?>
</tbody>
<tfoot>
<tr>
<td colspan="2">
<input type="submit" value="<?php echo __('Signin', null, 'sf_guard') ?>" />
<?php $routes = $sf_context->getRouting()->getRoutes() ?>
<?php if (isset($routes['sf_guard_forgot_password'])): ?>
<a href="<?php echo url_for('@sf_guard_forgot_password') ?>"><?php echo __('Forgot your password?', null, 'sf_guard') ?></a>
<?php endif; ?>
<?php if (isset($routes['sf_guard_register'])): ?>
<a href="<?php echo url_for('@sf_guard_register') ?>"><?php echo __('Want to register?', null, 'sf_guard') ?></a>
<?php endif; ?>
</td>
</tr>
</tfoot>
</table>
</form> |
Partager