mirror of
https://github.com/fleetdm/fleet
synced 2026-05-24 09:28:54 +00:00
Website: Update note on contact form, Update switch on customer-stories page (#23871)
Changes: - Removed the note about hosts on the contact form and updated the error message for the number of employees question. - Updated a switch option on the /customer-stories page (Device Management » Device management)
This commit is contained in:
parent
c993e5a485
commit
d12278798f
2 changed files with 4 additions and 4 deletions
6
website/views/pages/contact.ejs
vendored
6
website/views/pages/contact.ejs
vendored
|
|
@ -98,12 +98,12 @@
|
|||
<div class="form-group">
|
||||
<label for="number-of-hosts">How many employees are in your organization? *</label>
|
||||
<input class="form-control" id="number-of-hosts" name="number-of-hosts" type="number" :class="[formErrors.numberOfHosts ? 'is-invalid' : '']" min="1" v-model.trim="formData.numberOfHosts">
|
||||
<p purpose="devices-note" class="mt-3 mb-0" v-if="!primaryBuyingSituation || ['eo-it', 'mdm', 'vm'].includes(primaryBuyingSituation)">Includes computers, servers, phones, and more.</p>
|
||||
<p purpose="devices-note" class="mt-3 mb-0" v-if="primaryBuyingSituation === 'eo-security'">Includes servers, supercomputers, and everything else.</p>
|
||||
<!-- <p purpose="devices-note" class="mt-3 mb-0" v-if="!primaryBuyingSituation || ['eo-it', 'mdm', 'vm'].includes(primaryBuyingSituation)">Includes computers, servers, phones, and more.</p>
|
||||
<p purpose="devices-note" class="mt-3 mb-0" v-if="primaryBuyingSituation === 'eo-security'">Includes servers, supercomputers, and everything else.</p> -->
|
||||
<!-- <p purpose="devices-note" class="mt-3 mb-0" v-if="primaryBuyingSituation === 'eo-it'">Includes Apple, Windows, Linux workstations, Chromebooks, servers, and other hosts. </p> -->
|
||||
<!-- <p purpose="devices-note" class="mt-3 mb-0" v-if="primaryBuyingSituation === 'mdm'">Includes Apple, Windows, and desktop Linux. Android coming soon.</p> -->
|
||||
<!-- <p purpose="devices-note" class="mt-3 mb-0" v-if="primaryBuyingSituation === 'vm'">Includes computers, servers, OT/ICS, containers, and other hosts.</p> -->
|
||||
<div class="invalid-feedback" v-if="formErrors.numberOfHosts">Please enter a number of <%= primaryBuyingSituation === 'mdm' ? 'devices' : 'hosts' %></div>
|
||||
<div class="invalid-feedback" v-if="formErrors.numberOfHosts">Please enter a number of employees</div>
|
||||
</div>
|
||||
<cloud-error v-if="cloudError && cloudError === 'invalidEmailDomain'">
|
||||
<p>Please enter a valid work email address</p>
|
||||
|
|
|
|||
2
website/views/pages/testimonials.ejs
vendored
2
website/views/pages/testimonials.ejs
vendored
|
|
@ -23,7 +23,7 @@
|
|||
</div>
|
||||
</div>
|
||||
<div purpose="context-switch" class="d-flex flex-sm-row flex-column">
|
||||
<div purpose="switch-option" :class="[selectedContent === 'mdm' ? 'selected' : '']" @click="clickChangePageContent('mdm')"><p>Device Management</p></div>
|
||||
<div purpose="switch-option" :class="[selectedContent === 'mdm' ? 'selected' : '']" @click="clickChangePageContent('mdm')"><p>Device management</p></div>
|
||||
<div purpose="switch-option" :class="[selectedContent === 'it' ? 'selected' : '']" @click="clickChangePageContent('it')"><p>IT engineering</p></div>
|
||||
<div purpose="switch-option" :class="[selectedContent === 'security' ? 'selected' : '']" @click="clickChangePageContent('security')"><p>Security engineering</p></div>
|
||||
</div>
|
||||
|
|
|
|||
Loading…
Reference in a new issue