<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>GMWS 2026 Registration Form</title>
<link href="https://fonts.googleapis.com/css2?family=Sora:wght@300;400;500;600;700&family=DM+Sans:ital,wght@0,300;0,400;0,500;1,300&display=swap" rel="stylesheet">
<style>
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
--navy: #0a1f5c;
--royal: #1740b0;
--mid-blue: #2563eb;
--sky: #3b9eed;
--lime: #6dc84b;
--lime-dark: #4a9932;
--lime-pale: #e8f7e2;
--surface: #f4f7ff;
--white: #ffffff;
--text-dark: #0d1a3a;
--text-mid: #3a4b6e;
--text-muted: #6b7ba4;
--border: #cad3ed;
--border-focus: #2563eb;
--input-bg: #f8faff;
}
body {
font-family: 'DM Sans', sans-serif;
background: linear-gradient(160deg, #0a1f5c 0%, #1740b0 40%, #0e3a80 100%);
min-height: 100vh;
padding: 40px 20px 60px;
color: var(--text-dark);
}
.page-wrap {
max-width: 800px;
margin: 0 auto;
}
/* ── HEADER ── */
.header {
background: linear-gradient(135deg, #0a1f5c 0%, #1c4fc4 60%, #1a7bc4 100%);
border-radius: 20px 20px 0 0;
padding: 44px 48px 36px;
position: relative;
overflow: hidden;
}
.header::before {
content: '';
position: absolute;
right: -60px;
top: -60px;
width: 320px;
height: 320px;
border-radius: 50%;
background: rgba(109,200,75,0.10);
pointer-events: none;
}
.header::after {
content: '';
position: absolute;
right: 60px;
bottom: -80px;
width: 200px;
height: 200px;
border-radius: 50%;
background: rgba(255,255,255,0.04);
pointer-events: none;
}
.orgs {
font-family: 'Sora', sans-serif;
font-size: 11px;
font-weight: 500;
letter-spacing: 2px;
text-transform: uppercase;
color: rgba(255,255,255,0.65);
margin-bottom: 6px;
}
.header-present {
font-family: 'Sora', sans-serif;
font-size: 12px;
font-weight: 600;
color: var(--lime);
letter-spacing: 3px;
text-transform: uppercase;
margin-bottom: 20px;
}
.conf-edition {
display: flex;
align-items: baseline;
gap: 10px;
margin-bottom: 4px;
}
.the-label {
font-family: 'Sora', sans-serif;
font-size: 15px;
font-weight: 600;
color: rgba(255,255,255,0.7);
letter-spacing: 1px;
}
.conf-number {
font-family: 'Sora', sans-serif;
font-size: 44px;
font-weight: 700;
color: var(--lime);
line-height: 1;
}
.conf-number sup {
font-size: 20px;
vertical-align: super;
font-weight: 600;
}
.conf-title {
font-family: 'Sora', sans-serif;
font-size: 26px;
font-weight: 700;
color: #ffffff;
line-height: 1.2;
margin-bottom: 4px;
}
.conf-subtitle {
font-family: 'Sora', sans-serif;
font-size: 22px;
font-weight: 700;
color: #ffffff;
line-height: 1.2;
margin-bottom: 20px;
}
.badge-row {
display: flex;
flex-wrap: wrap;
gap: 10px;
align-items: center;
margin-bottom: 18px;
}
.badge {
background: rgba(109,200,75,0.18);
border: 1px solid rgba(109,200,75,0.45);
color: #a5f07e;
font-family: 'Sora', sans-serif;
font-size: 11px;
font-weight: 600;
letter-spacing: 1.5px;
text-transform: uppercase;
padding: 5px 12px;
border-radius: 20px;
}
.badge-neutral {
background: rgba(255,255,255,0.1);
border: 1px solid rgba(255,255,255,0.25);
color: rgba(255,255,255,0.8);
}
.theme-block {
border-left: 3px solid var(--lime);
padding-left: 14px;
margin-top: 4px;
}
.theme-label {
font-family: 'Sora', sans-serif;
font-size: 10px;
font-weight: 700;
letter-spacing: 2.5px;
text-transform: uppercase;
color: var(--lime);
margin-bottom: 3px;
}
.theme-title {
font-size: 15px;
font-weight: 500;
color: #ffffff;
margin-bottom: 2px;
}
.theme-tagline {
font-size: 13px;
color: rgba(255,255,255,0.55);
font-style: italic;
}
/* ── BODY ── */
.form-body {
background: var(--white);
border-radius: 0 0 20px 20px;
padding: 0 48px 48px;
box-shadow: 0 24px 80px rgba(10,31,92,0.35);
}
/* ── SECTIONS ── */
.section {
padding-top: 40px;
}
.section-header {
display: flex;
align-items: center;
gap: 12px;
margin-bottom: 24px;
padding-bottom: 12px;
border-bottom: 1.5px solid #e2e9f7;
}
.section-icon {
width: 34px;
height: 34px;
border-radius: 10px;
background: linear-gradient(135deg, var(--royal), var(--sky));
display: flex;
align-items: center;
justify-content: center;
flex-shrink: 0;
}
.section-icon svg {
width: 17px;
height: 17px;
fill: none;
stroke: #fff;
stroke-width: 2;
stroke-linecap: round;
stroke-linejoin: round;
}
.section-title {
font-family: 'Sora', sans-serif;
font-size: 14px;
font-weight: 700;
color: var(--navy);
letter-spacing: 0.5px;
text-transform: uppercase;
}
/* ── FIELDS ── */
.field-row {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 16px;
margin-bottom: 16px;
}
.field-row.single { grid-template-columns: 1fr; }
.field {
display: flex;
flex-direction: column;
gap: 6px;
margin-bottom: 16px;
}
.field:last-child { margin-bottom: 0; }
label {
font-size: 12px;
font-weight: 600;
color: var(--text-mid);
letter-spacing: 0.4px;
text-transform: uppercase;
}
.field-hint {
font-size: 12px;
color: var(--text-muted);
margin-top: -2px;
font-style: italic;
}
input[type="text"],
input[type="email"],
input[type="tel"],
textarea,
select {
font-family: 'DM Sans', sans-serif;
font-size: 14px;
color: var(--text-dark);
background: var(--input-bg);
border: 1.5px solid var(--border);
border-radius: 10px;
padding: 11px 14px;
outline: none;
transition: border-color 0.2s, box-shadow 0.2s;
width: 100%;
}
input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
textarea:focus,
select:focus {
border-color: var(--border-focus);
box-shadow: 0 0 0 3px rgba(37,99,235,0.10);
background: #fff;
}
textarea {
min-height: 110px;
resize: vertical;
line-height: 1.6;
}
/* ── CHECKBOX GROUPS ── */
.check-group {
display: flex;
flex-wrap: wrap;
gap: 10px;
}
.check-item {
display: flex;
align-items: center;
gap: 8px;
cursor: pointer;
padding: 8px 14px;
border-radius: 8px;
border: 1.5px solid var(--border);
background: var(--input-bg);
transition: border-color 0.15s, background 0.15s;
font-size: 13.5px;
color: var(--text-mid);
user-select: none;
}
.check-item:hover {
border-color: var(--mid-blue);
background: #eef4ff;
color: var(--royal);
}
.check-item input[type="checkbox"],
.check-item input[type="radio"] {
width: 15px;
height: 15px;
accent-color: var(--mid-blue);
cursor: pointer;
flex-shrink: 0;
}
.check-item.full-width {
width: 100%;
flex-basis: 100%;
}
.other-inline {
display: flex;
align-items: center;
gap: 8px;
padding: 8px 14px;
border-radius: 8px;
border: 1.5px solid var(--border);
background: var(--input-bg);
font-size: 13.5px;
color: var(--text-mid);
flex-wrap: nowrap;
}
.other-inline input[type="checkbox"] {
width: 15px;
height: 15px;
accent-color: var(--mid-blue);
flex-shrink: 0;
}
.other-inline input[type="text"] {
border: none;
background: transparent;
padding: 0;
border-radius: 0;
font-size: 13.5px;
box-shadow: none;
min-width: 120px;
border-bottom: 1px dashed var(--border);
}
/* ── YES/NO TOGGLE ── */
.yesno {
display: flex;
gap: 10px;
}
.yn-label {
display: flex;
align-items: center;
gap: 8px;
padding: 9px 18px;
border: 1.5px solid var(--border);
border-radius: 8px;
background: var(--input-bg);
cursor: pointer;
font-size: 13.5px;
color: var(--text-mid);
transition: all 0.15s;
}
.yn-label input { accent-color: var(--mid-blue); }
.yn-label:hover {
border-color: var(--mid-blue);
background: #eef4ff;
}
/* ── REFLECTION QUESTIONS ── */
.reflection-item {
background: linear-gradient(135deg, #f4f7ff, #eef4ff);
border: 1.5px solid #d0ddf7;
border-radius: 12px;
padding: 18px 20px;
margin-bottom: 14px;
}
.reflection-num {
font-family: 'Sora', sans-serif;
font-size: 11px;
font-weight: 700;
color: var(--mid-blue);
letter-spacing: 1px;
text-transform: uppercase;
margin-bottom: 8px;
}
.reflection-q {
font-size: 13px;
color: var(--text-mid);
margin-bottom: 10px;
line-height: 1.5;
}
.reflection-item textarea {
background: #fff;
min-height: 90px;
}
/* ── CONSENT BOX ── */
.consent-box {
background: linear-gradient(135deg, #f0f7ff, #e8f3ff);
border: 1.5px solid #bdd3f5;
border-radius: 12px;
padding: 20px 22px;
font-size: 13.5px;
color: var(--text-mid);
line-height: 1.7;
margin-bottom: 20px;
}
.consent-check {
display: flex;
align-items: flex-start;
gap: 12px;
margin-bottom: 16px;
}
.consent-check input {
margin-top: 3px;
accent-color: var(--mid-blue);
width: 16px;
height: 16px;
flex-shrink: 0;
}
.sig-row {
display: grid;
grid-template-columns: 2fr 1fr;
gap: 16px;
margin-top: 16px;
}
/* ── DIVIDER ── */
.divider {
border: none;
border-top: 1px solid #e6ecf7;
margin: 32px 0;
}
/* ── CONTACT FOOTER ── */
.contact-footer {
background: linear-gradient(135deg, var(--navy), #1a4db8);
border-radius: 14px;
padding: 26px 28px;
margin-top: 40px;
display: flex;
flex-wrap: wrap;
gap: 14px;
align-items: center;
justify-content: space-between;
}
.contact-tagline {
font-family: 'Sora', sans-serif;
font-size: 13px;
color: rgba(255,255,255,0.7);
font-style: italic;
max-width: 320px;
line-height: 1.5;
}
.contact-tagline strong {
color: var(--lime);
font-style: normal;
display: block;
font-size: 14px;
margin-bottom: 4px;
}
.contact-links {
display: flex;
flex-direction: column;
gap: 6px;
align-items: flex-end;
}
.contact-link {
display: flex;
align-items: center;
gap: 7px;
font-size: 12.5px;
color: rgba(255,255,255,0.75);
text-decoration: none;
}
.contact-link svg {
width: 14px;
height: 14px;
stroke: var(--lime);
fill: none;
stroke-width: 2;
stroke-linecap: round;
flex-shrink: 0;
}
.contact-link:hover { color: #fff; }
/* ── SUBMIT BUTTON ── */
.submit-wrap {
display: flex;
justify-content: center;
margin-top: 36px;
}
.btn-submit {
font-family: 'Sora', sans-serif;
font-size: 15px;
font-weight: 700;
letter-spacing: 0.5px;
color: #fff;
background: linear-gradient(135deg, var(--royal) 0%, var(--sky) 100%);
border: none;
border-radius: 12px;
padding: 15px 52px;
cursor: pointer;
transition: opacity 0.2s, transform 0.15s;
box-shadow: 0 6px 24px rgba(27,64,176,0.35);
}
.btn-submit:hover { opacity: 0.93; transform: translateY(-1px); }
.btn-submit:active { transform: translateY(0); }
/* ── RESPONSIVE ── */
@media (max-width: 600px) {
.header, .form-body { padding-left: 24px; padding-right: 24px; }
.field-row { grid-template-columns: 1fr; }
.sig-row { grid-template-columns: 1fr; }
.conf-title { font-size: 20px; }
.conf-subtitle { font-size: 18px; }
.contact-links { align-items: flex-start; }
}
@media print {
body { background: white; padding: 0; }
.page-wrap { max-width: 100%; }
.header { border-radius: 0; }
.form-body { box-shadow: none; border-radius: 0; }
.btn-submit { display: none; }
}
</style>
</head>
<body>
<div class="page-wrap">
<!-- HEADER -->
<div class="header">
<p class="orgs">New African Canadians (NAC) & House of Wellness (HOW)</p>
<p class="header-present">Present</p>
<div class="conf-edition">
<span class="the-label">THE</span>
<span class="conf-number">4<sup>TH</sup></span>
</div>
<p class="conf-title">Global Mental Well-Being &</p>
<p class="conf-subtitle">Substance Misuse Conference</p>
<div class="badge-row">
<span class="badge">GMWS 2026</span>
<span class="badge badge-neutral">📅 July 30 – August 2, 2026</span>
<span class="badge badge-neutral">📍 UPEI, Charlottetown, PEI, Canada</span>
</div>
<div class="theme-block">
<p class="theme-label">Conference Theme</p>
<p class="theme-title">· Families · Communities · Futures</p>
<p class="theme-tagline">When families heal, communities thrive and economies grow</p>
</div>
</div>
<!-- FORM BODY -->
<div class="form-body">
<!-- 1. PARTICIPANT INFORMATION -->
<div class="section">
<div class="section-header">
<div class="section-icon">
<svg viewBox="0 0 24 24"><circle cx="12" cy="8" r="4"/><path d="M4 20c0-4 3.6-7 8-7s8 3 8 7"/></svg>
</div>
<span class="section-title">Participant Information</span>
</div>
<div class="field-row">
<div class="field">
<label for="fname">First Name <span style="color:#e24b4a">*</span></label>
<input type="text" id="fname" name="first_name" placeholder="e.g. Amara" autocomplete="given-name">
</div>
<div class="field">
<label for="lname">Last Name <span style="color:#e24b4a">*</span></label>
<input type="text" id="lname" name="last_name" placeholder="e.g. Okonkwo" autocomplete="family-name">
</div>
</div>
<div class="field-row">
<div class="field">
<label for="pronouns">Pronouns</label>
<p class="field-hint">e.g. She/Her, He/Him, They/Them</p>
<input type="text" id="pronouns" name="pronouns" placeholder="Your pronouns">
</div>
<div class="field">
<label for="email">Email Address <span style="color:#e24b4a">*</span></label>
<input type="email" id="email" name="email" placeholder="you@example.com" autocomplete="email">
</div>
</div>
<div class="field-row">
<div class="field">
<label for="phone">Phone Number</label>
<input type="tel" id="phone" name="phone" placeholder="+1 (_) _-__" autocomplete="tel">
</div>
<div class="field">
<label for="org">Organization / Affiliation</label>
<input type="text" id="org" name="organization" placeholder="Institution or organization name">
</div>
</div>
<div class="field-row">
<div class="field">
<label for="role">Role / Position</label>
<input type="text" id="role" name="role" placeholder="e.g. Social Worker, Researcher, Student">
</div>
<div class="field">
<label for="location">City / Province / Territory or State</label>
<input type="text" id="location" name="location" placeholder="e.g. Halifax, NS">
</div>
</div>
</div>
<hr class="divider">
<!-- 2. ACCESSIBILITY & INCLUSION -->
<div class="section" style="padding-top:0">
<div class="section-header">
<div class="section-icon">
<svg viewBox="0 0 24 24"><path d="M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10z"/></svg>
</div>
<span class="section-title">Accessibility & Inclusion</span>
</div>
<div class="field">
<label>Do you have any dietary or accessibility needs?</label>
<div class="yesno">
<label class="yn-label"><input type="radio" name="access_needs" value="no"> No</label>
<label class="yn-label"><input type="radio" name="access_needs" value="yes"> Yes — please specify below</label>
</div>
</div>
<div class="field">
<label for="access_detail">If yes, please describe your needs</label>
<textarea id="access_detail" name="access_detail" placeholder="Please describe any dietary restrictions, mobility, hearing, vision, or other accessibility requirements so we can best accommodate you…"></textarea>
</div>
</div>
<hr class="divider">
<!-- 3. CONFERENCE REFLECTION QUESTIONS -->
<div class="section" style="padding-top:0">
<div class="section-header">
<div class="section-icon">
<svg viewBox="0 0 24 24"><path d="M9 11l3 3L22 4"/><path d="M21 12v7a2 2 0 01-2 2H5a2 2 0 01-2-2V5a2 2 0 012-2h11"/></svg>
</div>
<span class="section-title">Conference Reflection Questions</span>
</div>
<p style="font-size:13px; color:var(--text-muted); margin-bottom:18px; font-style:italic;">In your view, what are the top two challenges in mental health and substance use today, and how might climate change be making them worse?</p>
<div class="reflection-item">
<p class="reflection-num">Challenge #1</p>
<p class="reflection-q">Describe the first challenge and the potential climate change connection.</p>
<textarea name="reflection_1" placeholder="e.g. Increased anxiety and trauma from extreme weather events, displacement, and climate grief — particularly affecting youth and marginalized communities…"></textarea>
</div>
<div class="reflection-item">
<p class="reflection-num">Challenge #2</p>
<p class="reflection-q">Describe the second challenge and the potential climate change connection.</p>
<textarea name="reflection_2" placeholder="e.g. Rising substance misuse as communities lose traditional livelihoods and cultural practices tied to the land due to environmental degradation…"></textarea>
</div>
</div>
<hr class="divider">
<!-- 4. OUTREACH & ENGAGEMENT -->
<div class="section" style="padding-top:0">
<div class="section-header">
<div class="section-icon">
<svg viewBox="0 0 24 24"><path d="M18 8h1a4 4 0 010 8h-1"/><path d="M2 8h16v9a4 4 0 01-4 4H6a4 4 0 01-4-4V8z"/><line x1="6" y1="1" x2="6" y2="4"/><line x1="10" y1="1" x2="10" y2="4"/><line x1="14" y1="1" x2="14" y2="4"/></svg>
</div>
<span class="section-title">Outreach & Engagement</span>
</div>
<div class="field">
<label>How did you hear about GMWS 2026? <span style="text-transform:none;font-weight:400;color:var(--text-muted)">(Select all that apply)</span></label>
<div class="check-group" style="margin-top:6px">
<label class="check-item"><input type="checkbox" name="source" value="social_media"> Social Media</label>
<label class="check-item"><input type="checkbox" name="source" value="friend"> Friend / Colleague</label>
<label class="check-item"><input type="checkbox" name="source" value="workplace"> Organization / Workplace</label>
<label class="check-item"><input type="checkbox" name="source" value="school"> School / University</label>
<label class="check-item"><input type="checkbox" name="source" value="community"> Community Group</label>
<label class="check-item"><input type="checkbox" name="source" value="website"> Website</label>
<label class="check-item"><input type="checkbox" name="source" value="email"> Email Invitation</label>
<label class="check-item"><input type="checkbox" name="source" value="previous"> Previous Conference Attendee</label>
<div class="other-inline">
<input type="checkbox" name="source" value="other_source" id="src_other_cb">
<label for="src_other_cb" style="font-size:13.5px;text-transform:none;letter-spacing:0;font-weight:400;color:var(--text-mid);">Other:</label>
<input type="text" name="source_other" placeholder="Please specify">
</div>
</div>
</div>
</div>
<hr class="divider">
<!-- 5. DEMOGRAPHIC INFORMATION -->
<div class="section" style="padding-top:0">
<div class="section-header">
<div class="section-icon">
<svg viewBox="0 0 24 24"><rect x="3" y="3" width="7" height="7" rx="1"/><rect x="14" y="3" width="7" height="7" rx="1"/><rect x="3" y="14" width="7" height="7" rx="1"/><rect x="14" y="14" width="7" height="7" rx="1"/></svg>
</div>
<span class="section-title">Demographic Information</span>
</div>
<p style="font-size:12.5px;color:var(--text-muted);margin-bottom:20px;line-height:1.6;">This information helps us understand who is participating in GMWS 2026 and ensure we are inclusive and representative. All responses are voluntary and confidential.</p>
<!-- Age Group -->
<div class="field">
<label>Age Group</label>
<div class="check-group">
<label class="check-item"><input type="radio" name="age" value="under18"> Under 18</label>
<label class="check-item"><input type="radio" name="age" value="18-24"> 18–24</label>
<label class="check-item"><input type="radio" name="age" value="25-34"> 25–34</label>
<label class="check-item"><input type="radio" name="age" value="35-44"> 35–44</label>
<label class="check-item"><input type="radio" name="age" value="45-54"> 45–54</label>
<label class="check-item"><input type="radio" name="age" value="55-64"> 55–64</label>
<label class="check-item"><input type="radio" name="age" value="65+"> 65+</label>
<label class="check-item"><input type="radio" name="age" value="prefer_not"> Prefer not to say</label>
</div>
</div>
<!-- Gender Identity -->
<div class="field">
<label>Gender Identity</label>
<div class="check-group">
<label class="check-item"><input type="checkbox" name="gender" value="woman"> Woman</label>
<label class="check-item"><input type="checkbox" name="gender" value="man"> Man</label>
<label class="check-item"><input type="checkbox" name="gender" value="nonbinary"> Non-Binary</label>
<label class="check-item"><input type="checkbox" name="gender" value="transgender"> Transgender</label>
<label class="check-item"><input type="checkbox" name="gender" value="two_spirit"> Two-Spirit</label>
<label class="check-item"><input type="checkbox" name="gender" value="prefer_not_gender"> Prefer not to say</label>
<div class="other-inline">
<input type="checkbox" name="gender" value="self_describe" id="gender_other_cb">
<label for="gender_other_cb" style="font-size:13.5px;text-transform:none;letter-spacing:0;font-weight:400;color:var(--text-mid);white-space:nowrap;">Prefer to self-describe:</label>
<input type="text" name="gender_other" placeholder="Please specify">
</div>
</div>
</div>
<!-- Racial / Ethnic Identity -->
<div class="field">
<label>Racial / Ethnic Identity <span style="text-transform:none;font-weight:400;color:var(--text-muted)">(Select all that apply)</span></label>
<div class="check-group">
<label class="check-item"><input type="checkbox" name="ethnicity" value="african_black"> African / Black</label>
<label class="check-item"><input type="checkbox" name="ethnicity" value="indigenous"> Indigenous</label>
<label class="check-item"><input type="checkbox" name="ethnicity" value="asian"> Asian</label>
<label class="check-item"><input type="checkbox" name="ethnicity" value="south_asian"> South Asian</label>
<label class="check-item"><input type="checkbox" name="ethnicity" value="middle_eastern"> Middle Eastern / Arab</label>
<label class="check-item"><input type="checkbox" name="ethnicity" value="latin"> Latin American / Hispanic</label>
<label class="check-item"><input type="checkbox" name="ethnicity" value="white"> White / European</label>
<label class="check-item"><input type="checkbox" name="ethnicity" value="mixed"> Mixed / Multi-racial</label>
<label class="check-item"><input type="checkbox" name="ethnicity" value="prefer_not_eth"> Prefer not to say</label>
<div class="other-inline">
<input type="checkbox" name="ethnicity" value="other_eth" id="eth_other_cb">
<label for="eth_other_cb" style="font-size:13.5px;text-transform:none;letter-spacing:0;font-weight:400;color:var(--text-mid);">Other:</label>
<input type="text" name="ethnicity_other" placeholder="Please specify">
</div>
</div>
</div>
</div>
<hr class="divider">
<!-- 6. CONSENT & AGREEMENT -->
<div class="section" style="padding-top:0">
<div class="section-header">
<div class="section-icon">
<svg viewBox="0 0 24 24"><path d="M9 11l3 3L22 4"/><path d="M21 12v7a2 2 0 01-2 2H5a2 2 0 01-2-2V5a2 2 0 012-2h11"/></svg>
</div>
<span class="section-title">Consent & Agreement</span>
</div>
<div class="consent-box">
<div class="consent-check">
<input type="checkbox" id="consent_agree" name="consent" value="agreed">
<label for="consent_agree" style="font-size:13.5px;text-transform:none;letter-spacing:0;font-weight:400;color:var(--text-mid);cursor:pointer;line-height:1.7;">
I agree to attend GMWS 2026 and uphold a respectful, inclusive space for all participants. I understand that photos and videos may be taken during the conference for reporting, outreach, social media platforms, and the conference website. All personal data collected will remain confidential and handled in accordance with applicable privacy policies.
</label>
</div>
</div>
<div class="sig-row">
<div class="field" style="margin-bottom:0">
<label for="signature">Participant Signature</label>
<input type="text" id="signature" name="signature" placeholder="Type full name as signature">
</div>
<div class="field" style="margin-bottom:0">
<label for="sig_date">Date</label>
<input type="text" id="sig_date" name="sig_date" placeholder="YYYY-MM-DD">
</div>
</div>
</div>
<!-- SUBMIT -->
<div class="submit-wrap">
<button type="button" class="btn-submit">Submit Registration →</button>
</div>
<!-- CONTACT FOOTER -->
<div class="contact-footer">
<div class="contact-tagline">
<strong>Together, let us build healthier families, stronger communities, and brighter futures.</strong>
Questions? Reach out to the GMWS 2026 organizing team.
</div>
<div class="contact-links">
<a href="https://www.globalmws.org" class="contact-link" target="_blank">
<svg viewBox="0 0 24 24"><circle cx="12" cy="12" r="10"/><line x1="2" y1="12" x2="22" y2="12"/><path d="M12 2a15.3 15.3 0 014 10 15.3 15.3 0 01-4 10 15.3 15.3 0 01-4-10 15.3 15.3 0 014-10z"/></svg>
www.globalmws.org
</a>
<a href="mailto:globalmentalwellbeing@gmail.com" class="contact-link">
<svg viewBox="0 0 24 24"><path d="M4 4h16c1.1 0 2 .9 2 2v12c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2z"/><polyline points="22,6 12,13 2,6"/></svg>
globalmentalwellbeing@gmail.com
</a>
<a href="mailto:newafricancanadians@gmail.com" class="contact-link">
<svg viewBox="0 0 24 24"><path d="M4 4h16c1.1 0 2 .9 2 2v12c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2z"/><polyline points="22,6 12,13 2,6"/></svg>
newafricancanadians@gmail.com
</a>
</div>
</div>
</div><!-- /form-body -->
</div><!-- /page-wrap -->
<script>
document.getElementById('sig_date').addEventListener('focus', function() {
if (!this.value) {
const today = new Date();
this.value = today.toISOString().split('T')[0];
}
});
</script>
</body>
</html>