diff options
Diffstat (limited to 'src/main/webapp/wayf-sunet.jsp')
-rw-r--r-- | src/main/webapp/wayf-sunet.jsp | 30 |
1 files changed, 10 insertions, 20 deletions
diff --git a/src/main/webapp/wayf-sunet.jsp b/src/main/webapp/wayf-sunet.jsp index a900037..a7f7299 100644 --- a/src/main/webapp/wayf-sunet.jsp +++ b/src/main/webapp/wayf-sunet.jsp @@ -183,7 +183,7 @@ <div class="content"> <div class="contL"> <h1>Authentication required</h1> - <p class="intro">Type the name of your home organization or select from the list below</p> + <p class="intro">Select your identity provider from the list</p> <logic:present name="sites" scope="request"><logic:notPresent name="siteLists" scope="request"> <form style="margin-bottom: 10px;" id="originform" method="get" action="<bean:write name="requestURL" />"> @@ -202,7 +202,7 @@ <input type="hidden" name="returnIDParam" value="<bean:write name="returnIDParam" />" /> </logic:present> <input type="hidden" name="action" value="selection" /> - <input type="text" id="originSearch" name="string" value="" tabindex="25" size="30"/> + <!-- input type="text" id="originSearch" name="string" value="" tabindex="25" size="30"/ --> <select name="origin" id="origin" tabindex="40"> <logic:iterate id="site" name="sites"> <option value="<jsp:getProperty name="site" property="name" />"> @@ -210,7 +210,7 @@ </option> </logic:iterate> </select> - <input type="submit" value="Select" tabindex="50" /> + <input type="submit" id="originsubmit" value="Select" tabindex="50" /> <select name="cache" tabindex="60"> <option value="false"> Do not remember</option> <option value="session" selected="selected"> Remember for session</option> @@ -375,20 +375,13 @@ function changedFed(X, Selected) { </logic:present> <logic:present name="sites" scope="request"> - -<logic:present name="showComments" scope="Request"> - <!-- Load the autosuggest code. - - PROGRAMMING NOTE - the "ie6Hack" is to do with an issue in ie6 in which the - psuedo drop down floats below the real dropdown. The hack is that we jsut disable - the real drop down when the pseudo one is about. This can seem weird for some - layouts and so if you are not deploying against ie6 you can just send an - empty array. - --> -</logic:present> - <script language="javascript" type="text/javascript"> -<!-- +$(function() { + $('#origin').focus(); +}); + </script> + + <!-- script language="javascript" type="text/javascript"> $(function() { var idps = [ <logic:iterate id="site" name="sites"> @@ -415,10 +408,7 @@ $(function() { //$('.button').button(); //$('select').selectmenu({style: 'dropdown'}); }); ---> - </script> + </script --> </logic:present> - - </body> </html> |