arrow_backDocs

Start Guide

Build a voting app in 5 minutes.

Build a minimal remote voting interface using plain HTML, CSS, and JavaScript. No framework. No build step. Just drop in your public key and connect to CrownVote.

route

Minimal Integration

You only need three core API calls to build the first version.

terminal

Plain JavaScript

The guide uses browser fetch and simple DOM updates.

bolt

Easy to edit

Use it as a base for Tailwind CDN, hosted SPAs, awards voting, or school elections.

code Minimal API flow
GET  /api/v1/election
POST /api/v1/voter/login
POST /api/v1/voter/submit-votes
code Project files
my-election/
├── index.html
├── index.css
└── index.js

Build step by step

Ready?

Start by creating a small project folder for your voting interface.