57 lines
1.3 KiB
Plaintext
57 lines
1.3 KiB
Plaintext
<%- include('partials/header') %>
|
|
<div style="padding: 32px; max-width: 700px; margin: 0 auto">
|
|
<h3>Pick a date and time</h3>
|
|
<p><b>Duration:</b> 1 hour</p>
|
|
<p>Your timezone: <%= selectedTimezone %></p>
|
|
<form action="/book" method="POST" style="margin-top: 32px">
|
|
<h4>Additional Information</h4>
|
|
<label>*Full Name</label>
|
|
<input
|
|
type="text"
|
|
name="fullName"
|
|
required
|
|
style="width: 100%; margin-bottom: 12px"
|
|
/>
|
|
<label>*Email</label>
|
|
<input
|
|
type="email"
|
|
name="email"
|
|
required
|
|
style="width: 100%; margin-bottom: 12px"
|
|
/>
|
|
<label>*Company</label>
|
|
<input
|
|
type="text"
|
|
name="company"
|
|
required
|
|
style="width: 100%; margin-bottom: 12px"
|
|
/>
|
|
<label>*Phone</label>
|
|
<input
|
|
type="tel"
|
|
name="phone"
|
|
required
|
|
style="width: 100%; margin-bottom: 12px"
|
|
/>
|
|
<label>*Your Notes</label>
|
|
<textarea
|
|
name="notes"
|
|
required
|
|
style="width: 100%; margin-bottom: 16px"
|
|
></textarea>
|
|
<button
|
|
type="submit"
|
|
style="
|
|
background: #063970;
|
|
color: #fff;
|
|
padding: 8px 24px;
|
|
border: none;
|
|
border-radius: 4px;
|
|
"
|
|
>
|
|
Done
|
|
</button>
|
|
</form>
|
|
</div>
|
|
<%- include('partials/footer') %>
|