{% extends "ai/base_ai.html" %}
{% block title %}Contact us | Artificial Intellegence{% endblock %}
{% block meta_copydoc %}
https://docs.google.com/document/d/185NqOTBSWuVIAppRIT0K7hcQzTHm6Rk7XyZXcjNTFQM/edit
{% endblock meta_copydoc %}
{% block content %}
{% if product == 'ai-index-workshop' %}
{% with h1="Contact us about our AI workshop",
intro_text="Fill in your details below and a member of our sales team will be in touch.",
formid="3231",
lpId="6279",
returnURL="/ai/thank-you?product=ai-index-workshop" %}
{% include "shared/_default-contact-us-form.html" %}
{% endwith %}
{% elif product == 'ai-index-assessment' %}
{% with h1="Contact us about our ML / Data Science assessment",
intro_text="Fill in your details below and a member of our sales team will be in touch.",
formid="3231",
lpId="6279",
returnURL="/ai/thank-you?product=ai-managed" %}
{% include "shared/_default-contact-us-form.html" %}
{% endwith %}
{% elif product == 'ai-index-managed' %}
{% with h1="Contact us about our managed AI services",
intro_text="Fill in your details below and a member of our sales team will be in touch.",
formid="3231",
lpId="6279",
returnURL="/ai/thank-you?product=ai-managed" %}
{% include "shared/_default-contact-us-form.html" %}
{% endwith %}
{% elif product == 'ai-install' %}
{% with h1="Contact us about installing Kubeflow",
intro_text="Fill in your details below and a member of our sales team will be in touch.",
formid="3231",
lpId="6279",
returnURL="/ai/thank-you?product=ai-managed" %}
{% include "shared/_default-contact-us-form.html" %}
{% endwith %}
{% elif product == 'ai-consulting' %}
{% with h1="Contact us about Canonical consulting",
intro_text="Fill in your details below and a member of our sales team will be in touch.",
formid="3231",
lpId="6279",
returnURL="/ai/thank-you?product=ai-managed" %}
{% include "shared/_default-contact-us-form.html" %}
{% endwith %}
{% elif product == 'ai-features' %}
{% with h1="Contact us about AI on Canonical",
intro_text="Fill in your details below and a member of our sales team will be in touch.",
formid="3231",
lpId="6279",
returnURL="/ai/thank-you?product=ai-features" %}
{% include "shared/_default-contact-us-form.html" %}
{% endwith %}
{% elif product == 'ai-data-science' %}
{% with h1="Contact us about Data Science Stack",
intro_text="Fill in your details below and a member of our sales team will be in touch.",
formid="3231",
lpId="6279",
returnURL="/ai/thank-you?product=ai-features" %}
{% include "shared/_default-contact-us-form.html" %}
{% endwith %}
{% else %}
{% with h1="Contact us about Artificial Intelligence",
intro_text="Fill in your details below and a member of our sales team will be in touch.",
formid="5917",
lpId="6279",
returnURL="/ai/thank-you?product=ai-data-sciecnce" %}
{% include "shared/_default-contact-us-form.html" %}
{% endwith %}
{% endif %}
{% endblock content %}