diff options
author | Adam Young <ayoung@redhat.com> | 2011-01-25 14:44:42 -0500 |
---|---|---|
committer | Adam Young <ayoung@redhat.com> | 2011-01-25 16:47:09 -0500 |
commit | fd1e78d2b2285ab8635d638c425459a14ae21de0 (patch) | |
tree | c21aad3ca732d9cf8df18feee534cc1afec8e160 /install/html/unauthorized.html | |
parent | 02803be1ba39e7c9e642f9a45889d196ff3598dc (diff) | |
download | freeipa-fd1e78d2b2285ab8635d638c425459a14ae21de0.tar.gz freeipa-fd1e78d2b2285ab8635d638c425459a14ae21de0.tar.xz freeipa-fd1e78d2b2285ab8635d638c425459a14ae21de0.zip |
error handling style
modifying the directories so they find the assets in the right locations
Diffstat (limited to 'install/html/unauthorized.html')
-rw-r--r-- | install/html/unauthorized.html | 55 |
1 files changed, 32 insertions, 23 deletions
diff --git a/install/html/unauthorized.html b/install/html/unauthorized.html index 44a3e92d..b7111d1d 100644 --- a/install/html/unauthorized.html +++ b/install/html/unauthorized.html @@ -4,38 +4,47 @@ <meta charset="utf-8"> <title>IPA: Identity Policy Audit</title> - <script type="text/javascript" src="develop.js"></script> - <script type="text/javascript" src="webui.js"></script> + <script type="text/javascript" src="../ui/jquery.js"></script> - <link rel="stylesheet" type="text/css" href="jquery-ui.css" /> + <link rel="stylesheet" type="text/css" href="../ui/jquery-ui.css" /> <link rel="stylesheet" type="text/css" href="ipa_error.css" /> + + <script type="text/javascript"> + $(document).ready(function() { + $("#import-cert-auth-link").click(function(){ + $("#first-time").css("display","none"); + $("#next-link").css("display","block"); + return true; + }); + + }); + + </script> </head> <body id="header-bg"> - - <div class="container_1"> + + <div class="container_1"> <div class="header-logo"> - <img src="ipalogo.png" /> - </div> - <div class="textblockkrb"> - <h3>Kerberos Authentication Failed</h3> - <p><strong>Unable to verify your Kerberos credentials.</strong> Please make sure that you have valid Kerberos tickets (obtainable via kinit), and that you - <br> -have <a href="/ipa/errors/ssbrowser.html">configured your browser correctly</a>. If you are still unable to access the IPA Web interface, please - contact the helpdesk on for additional assistance. </p> - - <p>Import the <a href="/ipa/errors/ca.crt">IPA Certificate Authority</a>. </p> - - <p>You can automatically configure your browser to work with Kerberos by importing the Certificate Authority<br> - above and clicking on the Configure Browser button. </p> - - <p><strong>Reload this page after importing the Certificate Authority</strong></p> - + <img src="../ui/ipalogo.png" /> </div> - + <div class="textblockkrb"> + <h1>Unable to verify your Kerberos credentials.</h1><p> Please make sure that you have valid Kerberos tickets (obtainable via <b>kinit</b>), and that you have configured your browser correctly. </p> + <b>If this is your first time</b> + <div id="first-time"> + <ul> + <li><a id="import-cert-auth-link" href="/ipa/errors/ca.crt" >Click here to Import the IPA Certificate Authority</a>. </li> + <li>Make sure you select <b>all three</b> checkboxes </li> + <li>Click the <b>OK</b> Button</li> + </ul> + </div> + <div id="next-link" style="display:none;"> + . <p> <a href="browserconfig.html"> Next Step:</a></p> + </div> + </div> + </div> </body> </html> - |