JSFiddle - React, Tailwind, and code Playground

by tomasr

HTML

<html>
<body>
    <h3>Pdf to Word</h3>    
   <form  action="http://do.convertapi.com/pdf2word" method="post" enctype="multipart/form-data" > 
       Please choose PDF document from your computer  <br />
    <input name="File" type="file" required>
    <input name="ConversionTimeout" type="hidden" value="600" />   
    <input type="hidden" name="ApiKey" value="711364674">
       <p>
    <button id="btnConvert" type="submit">Convert</button>
       </p>
    </form>
        <h3>Pdf to Excel</h3>    
   <form  action="http://do.convertapi.com/pdf2excel" method="post" enctype="multipart/form-data" > 
       Please choose PDF document from your computer  <br />
    <input name="File" type="file" required>
    <input name="ConversionTimeout" type="hidden" value="600" />   
    <input type="hidden" name="ApiKey" value="711364674">
       <p>
    <button id="btnConvert" type="submit">Convert</button>
       </p>
    </form>
   <h3>Pdf to PowerPoint</h3>    
   <form  action="http://do.convertapi.com/pdf2powerpoint" method="post" enctype="multipart/form-data" > 
       Please choose PDF document from your computer  <br />
    <input name="File" type="file" required>
    <input name="ConversionTimeout" type="hidden" value="600" />   
    <input type="hidden" name="ApiKey" value="711364674">
       <p>
    <button id="btnConvert" type="submit">Convert</button>
       </p>
    </form>
</body>
</html>