From 1a3e08e2bb62b342894e1207ddd9b11ecf05fa09 Mon Sep 17 00:00:00 2001 From: Olav Morken <olav.morken@uninett.no> Date: Thu, 12 Jun 2008 13:28:11 +0000 Subject: [PATCH] IdP discovery service: Add autofocus. git-svn-id: https://simplesamlphp.googlecode.com/svn/trunk@647 44740490-163a-0410-bde0-09ae8108e29a --- templates/default/selectidp-dropdown.php | 4 +++- templates/default/selectidp-links.php | 4 +++- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/templates/default/selectidp-dropdown.php b/templates/default/selectidp-dropdown.php index 930e175fc..46ea384f8 100644 --- a/templates/default/selectidp-dropdown.php +++ b/templates/default/selectidp-dropdown.php @@ -5,6 +5,8 @@ if(!array_key_exists('header', $this->data)) { } $this->data['header'] = $this->t($this->data['header']); +$this->data['autofocus'] = 'selectbutton'; + $this->includeAtTemplateBase('includes/header.php'); foreach ($this->data['idplist'] AS $idpentry) { @@ -41,7 +43,7 @@ foreach ($this->data['idplist'] AS $idpentry) { } ?> </select> - <input type="submit" value="<?php echo $this->t('select'); ?>"/> + <input id="selectbutton" type="submit" value="<?php echo $this->t('select'); ?>"/> </form> diff --git a/templates/default/selectidp-links.php b/templates/default/selectidp-links.php index 1cbaa1842..debc78d2f 100644 --- a/templates/default/selectidp-links.php +++ b/templates/default/selectidp-links.php @@ -5,6 +5,8 @@ if(!array_key_exists('header', $this->data)) { } $this->data['header'] = $this->t($this->data['header']); +$this->data['autofocus'] = 'preferredidp'; + $this->includeAtTemplateBase('includes/header.php'); foreach ($this->data['idplist'] AS $idpentry) { @@ -39,7 +41,7 @@ foreach ($this->data['idplist'] AS $idpentry) { echo htmlspecialchars($this->t('idpname_' . $idpentry['entityid'])) . '</h3>'; echo ' <p>' . htmlspecialchars($this->t('idpdesc_' . $idpentry['entityid'])) . '<br />'; - echo ' [ <a href="' . $this->data['urlpattern'] . htmlspecialchars($idpentry['entityid']) . '">Select this IdP</a>]</p>'; + echo ' [ <a id="preferredidp" href="' . $this->data['urlpattern'] . htmlspecialchars($idpentry['entityid']) . '">Select this IdP</a>]</p>'; echo '</div>'; } -- GitLab