1. <?php session_start();
  2. include 'head.php' ?>
  3.  
  4. <?php if (isset($_SESSION['error'])): ?>
  5. <div class="alert alert-danger">
  6. <p><?php echo $_SESSION['error']; ?></p>
  7. </div>
  8. <?php endif; ?>
  9.  
  10. <div class='row-fluid'>
  11.         <div class='span10 offset1'>
  12.                 <h3> Submit an API Key</h3><br>
  13.                 <form>
  14.                         <div class="control-group">
  15.                                 <label class="control-label" for="KeyID">Key ID:</label>
  16.                                 <div class="controls">
  17.                                         <input class="input-small" name="inputKeyID" type="text" id="inputKeyID" placeholder="Key ID">
  18.                                 </div>
  19.                         </div>
  20.  
  21.                         <div class="control-group">
  22.                                 <label class="control-label" for="VerificationCode">Verification Code:</label>
  23.                                 <div class="controls">
  24.                                         <input class="input-xxlarge" type="text" id="inputVerification" placeholder="Verification Code:" name="inputVerification">
  25.                                 </div>
  26.                         </div>
  27.                         <div class="control-group">
  28.                                 <div class="controls">
  29.                                         <button type="submit" name="submit" class="btn">Submit API</button>
  30.                                 </div>
  31.                         </div>
  32.                 </form>
  33.         </div>
  34. </div>
  35.  
  36. <?php include 'footer.php' ?>