-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.qmd
More file actions
60 lines (43 loc) · 1.9 KB
/
contact.qmd
File metadata and controls
60 lines (43 loc) · 1.9 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
---
pagetitle: Contact
name: Contact Form
page-layout: article
format:
html:
grid:
margin-width: 0px
sidebar-width: 0px
toc: false
css:
- /assets/css/contact.css
---
::: {.grid}
::: {.g-col-5 #note}
# Contact Us
If you have questions about the WFRC Travel Demand Model, Real-Estate Market Model, or Bike Demand Model, need technical assistance with model applications, want to discuss data or methodology, or require support for transportation planning studies in the Wasatch Front region, please contact our Analytics team.
<ul style="list-style-type: none; padding-left: 0;">
<li>{{< fa location-dot >}} [41 North Rio Grande St. Suite 103, Salt Lake City, UT 84101](https://maps.app.goo.gl/c8oi9w1AtNwUbxUt8){target="_blank"}</li>
<li>{{< fa phone >}} [(801) 363-4250](tel:+18013634250)</li>
<li>{{< fa tty >}} TTY: 711</li>
<li>{{< fa envelope >}} [analytics@wfrc.utah.gov](mailto:analytics@wfrc.utah.gov)</li>
</ul>
## Office Hours
**Monday - Friday**: 8:00 AM - 5:00 PM (Mountain Time)
For urgent matters outside of business hours, please email us and we will respond as soon as possible.
:::
<!-- source: https://github.com/mccarthy-m-g/tidytales/blob/main/about/index.qmd#L24-L46 -->
::: {.g-col-1}
:::
::: {.g-col-6 #form}
<form action="https://formspree.io/f/xxxxxxxx" method="POST" accept-charset="utf-8">
<label for="full-name">Full Name</label>
<input type="text" name="name" id="full-name" class="form-control" placeholder="First and Last" required>
<label for="email-address">Email Address</label>
<input type="email" name="_replyto" id="email-address" class="form-control" placeholder="your@email.here" required>
<label for="message">Message</label>
<textarea rows="14" name="message" id="message" class="form-control" placeholder="Type your message here" required></textarea>
<button type="submit" class="btn btn-primary mt-4">Send message</button>
</form>
:::
:::
<!-- end grid -->