Full Page

Forge

12 weeks to production-ready

Forge is an intensive coding program for career changers who want to build real software, not just follow tutorials. We teach full-stack web development through project-based learning — by week 4, you're shipping code that users depend on. Small cohorts (16 students). In-person in London or fully remote. Instructors are senior engineers, not career teachers. Job placement rate: 89% within 90 days.

Curriculum

Weeks 1–3 — Fundamentals: HTML, CSS, JavaScript, Git, Weeks 4–6 — Backend: Node.js, SQL, REST APIs, Weeks 7–9 — Frontend Frameworks: React, TypeScript, Weeks 10–11 — Full-Stack Project (team of 4), Week 12 — Portfolio, Interview Prep, Demo Day

Outcomes

89% job placement within 90 days, Average starting salary: £38,000, Alumni at Monzo, Deliveroo, Revolut, and 60+ startups, Lifetime access to alumni network and career support

Coding Bootcamp

Modern bootcamp page with curriculum, outcomes, and application link.

by DesignGenerate 0 stars 1 renders 0 forks

Schema

FieldType
bootcamp_name string
headline string
about text
curriculum list<string>
outcomes list<string>
email email
apply_url link

Apply Values

POST JSON to the API endpoint:

POST /api/templates/coding-bootcamp/apply
Content-Type: application/json

{
  "bootcamp_name": "Forge",
  "headline": "12 weeks to production-ready",
  "about": "Forge is an intensive coding program for career changers who want to build real software, not just follow tutorials. We teach full-stack web development through project-based learning — by week 4, you're shipping code that users depend on.\n\nSmall cohorts (16 students). In-person in London or fully remote. Instructors are senior engineers, not career teachers. Job placement rate: 89% within 90 days.",
  "curriculum": [
    "Weeks 1–3 — Fundamentals: HTML, CSS, JavaScript, Git",
    "Weeks 4–6 — Backend: Node.js, SQL, REST APIs",
    "Weeks 7–9 — Frontend Frameworks: React, TypeScript",
    "Weeks 10–11 — Full-Stack Project (team of 4)",
    "Week 12 — Portfolio, Interview Prep, Demo Day"
  ],
  "outcomes": [
    "89% job placement within 90 days",
    "Average starting salary: £38,000",
    "Alumni at Monzo, Deliveroo, Revolut, and 60+ startups",
    "Lifetime access to alumni network and career support"
  ],
  "email": "[email protected]",
  "apply_url": "https://example.com/apply"
}

AI Prompt

Copy this prompt to generate a compatible template with any LLM:

You are an expert frontend designer.
Create a beautiful, modern HTML template for "Coding Bootcamp" that strictly follows the constraints and schema below.

## Constraints
- Style everything using inline style="" attributes only (no external CSS, no <link>, no <style> tags)
- Do NOT use: <script>, <iframe>, <form>, <input>, <textarea>, <button>, <select>, <object>, <embed>, <details>, <dialog>
- Place data placeholders using this syntax: {{bootcamp_name:string}}, {{headline:string}}, {{about:text}}
- The template must be a single HTML fragment (no <html>, <head>, or <body> tags)
- Use system fonts: font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif (or Georgia, serif for editorial)

## JSON Schema
```json
{
  "bootcamp_name": "string",
  "headline": "string",
  "about": "text",
  "curriculum": [
    "string"
  ],
  "outcomes": [
    "string"
  ],
  "email": "email",
  "apply_url": "link"
}
```

## Placeholder Syntax
Each data point uses `{{key:type}}` — for example:
- `{{bootcamp_name:string}}` → string
- `{{headline:string}}` → string
- `{{about:text}}` → text
- `{{curriculum:list<string>}}` → list<string>
- `{{outcomes:list<string>}}` → list<string>
- `{{email:email}}` → email
- `{{apply_url:link}}` → link

Output ONLY the HTML code block. No explanation.