Advertisement
erand

VMware vSphere Control HTML form

Feb 22nd, 2015
460
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 2.47 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3.     <head>
  4.         <title>VMware vSphere Control</title>
  5.         <meta http-equiv="X-UA-Compatible" content="IE=edge" />
  6.         <link rel="stylesheet" type="text/css" href="pure/pure.css">
  7.         <link rel="stylesheet" type="text/css" href="center.css">
  8.         <link href='https://fonts.googleapis.com/css?family=Open+Sans:400,700' rel='stylesheet' type='text/css'>
  9.     </head>
  10.     <body>
  11.         <div class="img-up"><img src="company.png" alt="MyCompany"></div>
  12.         <header>VMware vSphere Control</header>
  13.         <section class="center">
  14.             <form name="myForm" class="pure-form pure-form-aligned" action="../../cgi-bin/vmcontrol.pl" method="post">
  15.                 <fieldset>
  16.                     <div class="pure-control-group">
  17.                         <input name="username" id="name" type="text" placeholder="Enter your username" required>
  18.                     </div>
  19.                     <div class="pure-control-group">
  20.                         <input name="password" id="password" type="password" placeholder="Enter your password" required>
  21.                     </div>
  22.                     <div class="pure-control-group">
  23.                         <input name="vxms" id="email" type="text" placeholder="Enter VD or VM" required>
  24.                     </div>
  25.                     <div class="pure-control-group">
  26.                         <select name="option" id="option">
  27.                             <option value="poweron">Power on</option>
  28.                             <option value="poweroff">Power off</option>
  29.                             <option value="reset">Reset</option>
  30.                             <option value="console">Console</option>
  31.                         </select>
  32.                     </div>
  33.                     <div class="is-center pure-control-group">      
  34.                         <button type="submit" class="pure-button pure-button-primary is-float-right">Submit</button>
  35.                     </div>
  36.                     <div class="note">      
  37.                         <label><strong>Note:</strong> To access a virtual machine's console, you must install the</label><br/>
  38.                         <label><a href="https://rep.local/vsphere-client/VMware-ClientIntegrationPlugin-5.5.0.exe">vSphere Client Integration Plugin</a></label>
  39.                     </div>
  40.                 </fieldset>
  41.             </form>
  42.             <footer><label>For any issue, please contact ME</a></label> </footer>
  43.         </section>
  44.     </body>
  45. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement