Quick Start

Get the pitch deck uploader running on your site in under 5 minutes.

Step 1: Add the Widget Container

Add a <div> element where you want the widget to appear. The widget requires at minimum a data-capwave-upload marker attribute and a data-partner-id:

<div
  data-capwave-upload
  data-partner-id="your-partner-id"
></div>
Note: Contact Capwave to obtain your partner ID for production use.

Step 2: Include the Script

Add the widget script before the closing </body> tag:

<script src="https://pitch.capwave.ai/assets/pitch-deck-uploader.min.js"></script>

The widget will automatically initialize when the script loads.

Step 3: Done!

That's it! Your users can now upload pitch decks. Here's the complete code:

<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Upload Your Pitch Deck</title>
</head>
<body>

  <!-- Widget container -->
  <div
    data-capwave-upload
    data-partner-id="your-partner-id"
  ></div>

  <!-- Widget script -->
  <script src="https://pitch.capwave.ai/assets/pitch-deck-uploader.min.js"></script>

</body>
</html>

Next Steps