www.usr.com/support/gpl/USR9113_release1.0.tar.gz
[bcm963xx.git] / userapps / broadcom / cfm / html / certcaimport.html
index 28a4066..98d9b6c 100755 (executable)
@@ -1,10 +1,20 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
+<!--
+       (c) 2006 U.S. Robotics Corporation
+-->
 <html>
-  <head>
-    <meta HTTP-EQUIV='Pragma' CONTENT='no-cache'>
-    <link rel="stylesheet" href='stylemain.css' type='text/css'>
-      <link rel="stylesheet" href='colors.css' type='text/css'>
-        <script language="javascript" src="util.js"></script>
-        <script language="javascript">
+<head>
+       <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
+       <meta HTTP-EQUIV='Pragma' CONTENT='no-cache'>
+       <title>Import Certificate</title>
+       <link href="usr_menus_dropdown.css" rel="stylesheet" type="text/css">
+       <script src="usr_menus_dropdown.js" type="text/javascript"></script>
+       <script src="usr_menus_build.js" type="text/javascript"></script>
+       <link href="usr_layout.css" type="text/css" rel="stylesheet" /><script src="usr_layout.js" type="text/javascript"></script>
+       <link href="usr_device.css" type="text/css" rel="stylesheet" /><script src="usr_device.js" type="text/javascript"></script><link href="usr_91xx.css" type="text/css" rel="stylesheet" /><script src="usr_91xx.js" type="text/javascript"></script><script src="usr_resources.js" type="text/javascript"></script>
+
+  <script type="text/javascript" src="util.js"></script>
+  <script type="text/javascript">
 <!-- hide
 
 var certstart = '-----BEGIN CERTIFICATE-----';
@@ -20,53 +30,49 @@ function frmLoad() {
 
 function applyClick() {
   var idx;
+
   with ( document.forms[0] ) {
     if ( certName.value == '' ) {
-      alert('Certificate Name should not be empty.');
+      alert('Please enter a certificate name.');
       return;
     }
     if ( certPublic.value == '' ) {
-      alert('Certificate Public Key should not be empty.');
+      alert('Please enter a certificate public key.');
       return;
     }
   }
   document.importForm.submit();
 }
 // done hiding -->
+       </script>
+</head>
+
+<body onload="initMenu(); frmLoad();">
+
+<script type="text/javascript">
+       
+       writeHeader("Import Certificate");
+</script>
+
+<h3>Import CA Certificate</h3>
+
+<form name="importForm" method="post">
+
+<p>Enter the certificate name and certificate content.</p>
+
+<p><label for="certName">Certificate name:</label>
+       <input type='text' name='certName' size='20' maxlength="63"></p>
+
+<p><label for="certPublic">Certificate:</label></p>
+<p><TEXTAREA name='certPublic' rows='20' cols='80'></TEXTAREA></td></p>
+
+<p><input type='button' value="Import" onclick="applyClick()"></p>
+
+</form>
+
+<script type="text/javascript">
+       writeFooter();
 </script>
-  </head>
-  <body onLoad='frmLoad()'>
-    <blockquote>
-      <form name="importForm" method="post">
-        <b>Import CA certificate<br>
-        </b>
-        <br>
-        Enter certificate name and paste certificate content.<br>
-        <br>
-        <table border="0" cellpadding="0" cellspacing="0">
-          <tr>
-            <td width="180">Certificate Name:</td>
-            <td><input type='text' name='certName' size='20' maxlength="63"></td>
-          </tr>
-            <tr>
-              <td width="180">Certificate:</td>
-              <td>
-                <P>
-                  <TEXTAREA name='certPublic' rows='20' cols='80'>
-              </TEXTAREA>
-                </P>
-              </td>
-            </tr>
-          </table>
-        </div>
-        <br>
-        <br>
-        <br>
-        <center>
-          <input type='button' value='Apply' onclick="applyClick()">
-        </center>
-      </form>
-    </blockquote>
-  </body>
+
+</body>
 </html>