✓
Understand your rights and the Employment Tribunal process.
✓
Navigate procedural requirements with confidence.
✓
Level the playing field against legally represented employers.
CI
Meet the author
Comfort Iyiewuare
Founder of ComfortTheLawyer
Helping litigants-in-person navigate employment disputes with confidence, clarity and practical guidance. Drawing on legal knowledge, lived experience, and the experiences of other litigants, Comfort creates resources that simplify complex legal processes and help people advocate effectively for themselves.
Personal support
Need more than the guide?
Book a 1-on-1 session with Comfort for guidance tailored to your specific situation.
⚠ Placeholder content — replace with real reader testimonials before launch
ER
Emily Rodriguez
"Practical, empowering, and easy to understand."
SA
Sophia Adichie
"The guide I wish I'd had at the start of my tribunal journey."
Your questions answered
Find quick answers to common queries about the guide
Who is this guide for?
This guide is designed primarily for Black women navigating the UK Employment Tribunal without legal representation. However, the information may also be helpful to other litigants-in-person seeking practical guidance and support.
Do I need a solicitor to bring an Employment Tribunal claim?
No. Many people successfully represent themselves in Employment Tribunals. This guide helps you better understand the process and prepare your case with greater confidence.
Will this guide tell me how to win my case?
No. Every case is unique. The guide does not provide legal advice or guarantee outcomes. Instead, it helps you understand the tribunal process, organise your evidence, and avoid common pitfalls.
What topics does the guide cover?
ACAS Early Conciliation
Tribunal time limits
ET1 and ET3 forms
Building a case strategy
Gathering and organising evidence
Hearing preparation
Settlements and negotiations
Emotional wellbeing and resilience
Is this legal advice?
No. The guide is for educational and informational purposes only. If you require legal advice, you should seek assistance from a qualified legal professional.
How will I receive the guide?
The guide will be available as a digital ebook. Subscribers to the ComfortTheLawyer mailing list will be the first to receive launch updates and exclusive bonuses.
What do I get when I join the mailing list?
Employment Tribunal tips and updates
Access to free resources and checklists
Early access to new guides
Exclusive launch announcements and offers
What is the Free Employment Tribunal Preparation Checklist?
It is a practical resource designed to help you prepare for your tribunal journey by tracking deadlines, gathering evidence, and planning key actions before submitting your claim.
Will there be more guides in the future?
Yes. ComfortTheLawyer is building a growing library of practical legal guides, including:
Employment Tribunal Workbook
Workplace Discrimination Survival Guide
Self-Advocacy Toolkit
Additional resources for litigants-in-person
Why should I subscribe now?
Book launch notifications
Free resources
Future guide releases
Exclusive subscriber-only content
Don't navigate the tribunal process alone. Join the ComfortTheLawyer community and get the clarity, confidence, and practical support you need.
Let's get in touch
Need assistance or want to leave a comment? Fill out the form, we'll be in touch soon!
// Countdown — set to 14 days from page load as a working placeholder.
// Replace targetDate with the real launch date/time.
const targetDate = new Date();
targetDate.setDate(targetDate.getDate() + 14);
function updateCountdown(){
const now = new Date();
let diff = targetDate - now;
if(diff < 0) diff = 0;
const d = Math.floor(diff / (1000*60*60*24));
const h = Math.floor((diff / (1000*60*60)) % 24);
const m = Math.floor((diff / (1000*60)) % 60);
const s = Math.floor((diff / 1000) % 60);
document.getElementById('cd-days').textContent = d;
document.getElementById('cd-hours').textContent = h;
document.getElementById('cd-mins').textContent = m;
document.getElementById('cd-secs').textContent = s;
}
updateCountdown();
setInterval(updateCountdown, 1000);
// Contact form — submits to Netlify Forms (works automatically once deployed on Netlify).
// Locally (or on any non-Netlify host) this fetch will fail, which is expected —
// the form only actually captures submissions once the site is live on Netlify.
function encodeFormData(data) {
return Object.keys(data)
.map(key => encodeURIComponent(key) + "=" + encodeURIComponent(data[key]))
.join("&");
}
document.getElementById('contactForm').addEventListener('submit', function(e){
e.preventDefault();
const form = this;
const statusEl = document.getElementById('formStatus');
const formData = {
"form-name": form.querySelector('[name="form-name"]').value,
name: form.querySelector('#name').value,
email: form.querySelector('#email').value,
message: form.querySelector('#message').value,
"bot-field": form.querySelector('[name="bot-field"]').value
};
fetch("/", {
method: "POST",
headers: { "Content-Type": "application/x-www-form-urlencoded" },
body: encodeFormData(formData)
})
.then(() => {
statusEl.textContent = 'Thank you for getting in touch! One of our colleagues will get back to you shortly.';
form.reset();
})
.catch(() => {
statusEl.textContent = "Something went wrong sending your message. Please try again, or email us directly.";
});
});