diff options
Diffstat (limited to 'core/templates/login.php')
-rw-r--r-- | core/templates/login.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/core/templates/login.php b/core/templates/login.php index 7616b93f9a5..c6d0b5a9b97 100644 --- a/core/templates/login.php +++ b/core/templates/login.php @@ -42,12 +42,12 @@ </fieldset> </form> <?php if (!empty($_['alt_login'])) { ?> -<form> +<form id="alternative-logins"> <fieldset> - <legend style="margin-bottom: 20px;"><?php echo $l->t('Alternative Logins:') ?></legend> + <legend><?php echo $l->t('Alternative Logins') ?></legend> <ul> <? foreach($_['alt_login'] as $login): ?> - <li style="height: 40px;"><a class="button" href="<?php echo $login['href']; ?>" ><?php echo $login['name']; ?></a></li> + <li><a class="button" href="<?php echo $login['href']; ?>" ><?php echo $login['name']; ?></a></li> <?php endforeach; ?> </ul> </fieldset> |