Contact Educational Coordinators

Inquire about educational masterclasses, institutional technical briefings, or research collaborations with Dime Learning Library in Bristol, United Kingdom.

Get in Touch with Our Research Office

Whether you are scheduling a corporate engineering masterclass, requesting academic course materials, or seeking technical advisory for your architecture team, our educational coordinators are available to assist.

<div class="glass-card" style="margin-bottom: 1.5rem; padding: 1.5rem;">
  <h4 style="color: #fff; margin-bottom: 0.5rem; font-size: 1.05rem;">Bristol Research & Learning Office</h4>
  <p style="font-size: 0.95rem; color: #D8E3F8; margin-bottom: 0.5rem;"><strong>Address:</strong> Office 10, 72 Demo Street, Bristol ZZ4 4AA</p>
  <p style="font-size: 0.95rem; color: #D8E3F8; margin-bottom: 0.5rem;"><strong>Telephone:</strong> +44 117 000 5410</p>
  <p style="font-size: 0.95rem; color: #D8E3F8; margin-bottom: 0.5rem;"><strong>Email:</strong> hello@dataprismbase.click</p>
  <p style="font-size: 0.85rem; color: var(--text-muted); margin-top: 0.75rem;"><strong>Response Window:</strong> Our educational team typically reviews and replies to technical curriculum inquiries within 1 to 2 business days.</p>
</div>

<div class="glass-card" style="padding: 1.5rem; border-color: rgba(0, 194, 255, 0.3);">
  <h4 style="color: var(--color-cyan); margin-bottom: 0.5rem; font-size: 1.05rem;">Academic & Research Office Hours</h4>
  <p style="font-size: 0.92rem; color: var(--text-secondary); margin: 0;">Monday through Friday: 09:00 – 17:30 GMT<br>Scheduled technical consultations take place by appointment via private video link or at our Bristol office.</p>
</div>

Inquiry Form

Fill out the details below to request workshop dates or syllabus information.

  <!-- Alert success -->
  <div x-show="submitStatus === 'success'" class="form-alert-success" x-cloak>
    <strong>Success:</strong> <span x-text="submitMessage"></span>
  </div>

  <!-- Alert error -->
  <div x-show="submitStatus === 'error'" class="form-alert-error" x-cloak>
    <strong>Error:</strong> <span x-text="submitMessage"></span>
  </div>

  <form @submit.prevent="submitForm" novalidate>
    <div class="form-group">
      <label class="form-label" for="form-name">Full Name *</label>
      <input type="text" id="form-name" class="form-input" x-model="name" placeholder="e.g. Dr. Arthur Pendelton">
      <div x-show="errors.name" class="form-error-msg" x-text="errors.name"></div>
    </div>

    <div class="form-group">
      <label class="form-label" for="form-email">Work / Academic Email *</label>
      <input type="email" id="form-email" class="form-input" x-model="email" placeholder="e.g. arthur@university.ac.uk">
      <div x-show="errors.email" class="form-error-msg" x-text="errors.email"></div>
    </div>

    <div class="form-group">
      <label class="form-label" for="form-org">Organization / Institution</label>
      <input type="text" id="form-org" class="form-input" x-model="organization" placeholder="e.g. Bristol Distributed Systems Lab">
    </div>

    <div class="form-group">
      <label class="form-label" for="form-topic">Interested Educational Program</label>
      <select id="form-topic" class="form-select" x-model="topic">
        <option value="Architecture & Ecosystem Intensive">Architecture & Ecosystem Intensive (3 Days)</option>
        <option value="Validator & Infrastructure Briefing">Validator & Infrastructure Briefing (1 Day)</option>
        <option value="Developer Tooling Advisory Clinic">Developer Tooling Advisory Clinic (Half/Full Day)</option>
        <option value="Custom Curriculum / Academic Collaboration">Custom Curriculum / Academic Collaboration</option>
        <option value="General Educational Question">General Educational Question</option>
      </select>
    </div>

    <div class="form-group">
      <label class="form-label" for="form-msg">Inquiry Details / Proposed Dates *</label>
      <textarea id="form-msg" class="form-textarea" rows="4" x-model="message" placeholder="Please describe your engineering team size, technical objectives, or preferred scheduling..."></textarea>
      <div x-show="errors.message" class="form-error-msg" x-text="errors.message"></div>
    </div>

    <button type="submit" class="btn btn-primary" style="width: 100%;" :disabled="isSubmitting">
      <span x-show="!isSubmitting">Submit Educational Inquiry</span>
      <span x-show="isSubmitting">Transmitting Request...</span>
    </button>
  </form>
</div>