Skip to content

Commit

Permalink
Remove fullName field and add first&last name field on /observibility…
Browse files Browse the repository at this point in the history
…/managed contact-us form (canonical#13261)

* Remove fullName field and ass first&last name field on /observibility/managed contact-us form

* Add phone, company and job title fields
  • Loading branch information
petesfrench authored Oct 24, 2023
1 parent cce6b8f commit 15daa09
Showing 1 changed file with 18 additions and 2 deletions.
20 changes: 18 additions & 2 deletions templates/shared/forms/interactive/managed-observability.html
Original file line number Diff line number Diff line change
Expand Up @@ -99,13 +99,29 @@ <h3 class="p-heading--5">How should we get in touch?</h3>
<form action="/marketo/submit" method="post" id="mktoForm_%% formid %%" class="modal-form" >
<ul class="p-list">
<li class="p-list__item">
<label for="fullName">Name:</label>
<input required id="fullName" name="fullName" maxlength="255" type="text" required="required" />
<label for="firstName">First name:</label>
<input required id="firstName" name="firstName" maxlength="255" type="text" required="required" />
</li>
<li class="p-list__item">
<label for="lastName">Last name:</label>
<input required id="lastName" name="lastName" maxlength="255" type="text" required="required" />
</li>
<li class="p-list__item">
<label for="email">Work email:</label>
<input required id="email" name="email" maxlength="255" type="email" pattern="^[^ ]+@[^ ]+\.[a-z]{2,26}$" required="required" />
</li>
<li class="p-list__item">
<label for="phone">Phone number:</label>
<input id="phone" name="phone" maxlength="255" type="tel">
</li>
<li class="p-list__item">
<label for="company">Company:</label>
<input required id="company" name="company" maxlength="255" type="text" />
</li>
<li class="p-list__item">
<label for="jobTitle">Job title:</label>
<input required id="jobTitle" name="title" maxlength="255" type="text" />
</li>
<li class="p-list__item">
<label class="p-checkbox">
<input class="p-checkbox__input" value="yes" aria-labelledby="canonicalUpdatesOptIn" name="canonicalUpdatesOptIn" type="checkbox" />
Expand Down

0 comments on commit 15daa09

Please sign in to comment.