Retro major energy · modern private league
Now with selectable golfer cards and live budget logic.
This next-step prototype lets you test the draft experience directly: pick up to four golfers, stay under the cap, preview a scoring ruleset, and see how a member entry could behave before the real app is built.
4 picksMax roster
100 capBudget enforced
-5 cutPenalty included

Hero artwork
Premium private-club styleDraft cards below use stable portrait placeholders in this prototype so the layout stays clean and consistent.
Selection screen
Build your four-man team
Click cards to add or remove players. The cap and roster size update instantly.
Live league table
Mock realtime leaderboard
Updates here are simulated for prototype review.
| Pos | Member | Major points | Season | Trend |
|---|---|---|---|---|
| 1 | Gavin | 29 | 86 | +2 |
| 2 | Alex | 24 | 81 | +1 |
| 3 | Sam | 19 | 73 | -1 |
| 4 | Ben | 12 | 69 | -2 |
AI recap · refresh every 30 minutes
Draft room pulse
Gavin leads the current prototype table because the team has one elite favourite plus enough budget value to avoid missed-cut damage.
Headline: Wind later in the round could help steady ball-strikers.
Headline: Two mid-priced golfers are outperforming their draft cost.
Headline: A high-priced favourite is drifting toward the cut line.
AI draft assistant
Suggested build style
1 premium anchorBest ceiling
2 mid-tier valuesStable floor
1 low-cost flyerCap efficiency
Publishing
Easiest way to get it live on your server
Fastest route for a static prototype before backend work.
1. Put this file on your server as index.html inside a folder such as /var/www/thegolfdraft/.Fast
2. Serve that folder with Nginx using a simple static site block and point a subdomain like golfdraft.yourdomain.com at it.Clean
3. Because this prototype is static HTML, CSS, and JS, there is no database or app server needed yet.Easy
4. Add HTTPS with Let’s Encrypt once DNS is pointed correctly, then share the URL.Proper
Create folder/var/www/thegolfdraft
Copy this file in asindex.html
Nginx rootroot /var/www/thegolfdraft;
Reload Nginxsudo nginx -t && sudo systemctl reload nginx