1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495 |
- <?php require_once "./head.inc" ?>
- <html>
- <head>
- <title id="pageTitleId"><?php echo $RES['page.title'] ?></title>
- <!-- CSS -->
- <link type="text/css" rel="stylesheet" href="../yui-3.5.1/build/cssreset/cssreset-min.css">
- <link type="text/css" rel="stylesheet" href="../css/bootstrap.css" media="screen"/>
- <link type="text/css" rel="stylesheet" href="../css/common.css" media="screen"/>
- <link type="text/css" rel="stylesheet" href="../css/common2.css" media="screen"/>
- <link type="text/css" rel="stylesheet" href="../css/common3.css" media="screen"/>
- <link type="text/css" rel="stylesheet" href="../css/selectHosts.css" media="screen"/>
- <link rel="shortcut icon" href="../images/logo-micro.gif">
- <!-- End CSS -->
- </head>
- <body class="yui3-skin-sam">
- <?php require "./topnav.htmli"; ?>
- <?php
- include_once ("../php/util/clusterState.php");
- // $clusterName = "m4v1";
- // $clusterState = needWipeOut($clusterName);
- ?>
-
- <div id="ContentDivId">
- <!-- Uninstallation Wizard -->
- <div id="installationWizardDivId" style="display:block">
- <?php require "./utils.htmli"; ?>
- <div class="pageSummary">
- <h2><?php echo $RES['uninstallWizard.pageSummary.header'] ?></h2>
- <p><?php echo $RES['uninstallWizard.pageSummary.body'] ?></p>
- </div>
- <div id="installationMainFormsDivId">
- <div id="formStatusDivId" class="alert alert-error" style="display:none">
- </div>
- <div id="addNodesCoreDivId" style="display:block">
- <fieldset>
- <form id="addNodesFilesFormId" enctype="multipart/form-data" method="post">
- <label for="clusterDeployUserId"><?php echo $RES['common.sshUsername.label'] ?></label>
- <input type="text" name="ClusterDeployUser" id="clusterDeployUserId" value="root" placeholder="">
- <div class="separator"></div>
- <label for="clusterDeployUserIdentityFileId"><?php echo $RES['common.sshPrivateKeyFile.label'] ?></label>
- <input type="file" name="clusterDeployUserIdentityFile" id="clusterDeployUserIdentityFileId" value="" placeholder="">
- <div class="separator"></div>
- <div id="fileUploadWrapperDivId">
- <iframe name="fileUploadTarget" id="fileUploadTargetId" src="about:blank" style="display:none"></iframe>
- </div>
- <div class="separator"></div>
- <div id="confirmWipeOutDivId">
- <label class="checkbox" for="confirmWipeOutId"><?php echo $RES['uninstallWizard.wipeout.label'] ?>
- <input type="checkbox" id="confirmWipeOutCheckId" value="false">
- </label>
- </div>
- <div class="separator"></div>
- <input type="button" class="btn btn-large" id="addNodesSubmitButtonId" value="<?php echo $RES['uninstallWizard.submit.label'] ?>">
- </fieldset>
- </div>
- <?php require "./txnUtils.htmli"; ?>
- </div>
- </div>
- <!-- End of Uninstallation Wizard -->
- </div>
- <?php require "./footer.htmli"; ?>
- <!-- Javascript Scaffolding -->
- <script type="text/javascript">
- var freshInstall = false;
- var nodesAction = "uninstall";
- var clusterName = "<?php echo $_GET['clusterName']; ?>";
- var InstallationWizard = {
- AddNodes:
- {},
- AddNodesProgress:
- {}
- };
- var jsFilesToLoad = [
- '../js/utils.js',
- '../js/txnUtils.js',
- '../js/uninstall.js',
- '../js/uninstallProgress.js',
- ];
- </script>
- <?php require "./bootstrapJs.htmli"; ?>
- <!-- End of Javascript Scaffolding -->
- </body>
- </html>
|