-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
60 lines (50 loc) · 2.99 KB
/
contact.html
File metadata and controls
60 lines (50 loc) · 2.99 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
---
title: Contact
---
<h1>Join Us</h1>
<div class="main_content">
<p>University of Washington undergraduate and graduate students who have experience with AI are welcome to join The AI Clinic as members.
Members of the clinic can expect to assist clients with their research projects and to assist the clinic with offering office hours.
You'll also be part of our community mailing list, where we share announcements and provide opportunities to join new projects.
If you're interested in joining the AI Clinic as a student volunteer, complete the form below and we will get back to you soon.</p>
<div class="form-body">
<form
action="https://formspree.io/f/xgvognnn"
method="POST"
>
<label for="name">Full Name:</label>
<input type="text" id="name" name="name" required>
<label for="email">Email Address:</label>
<input type="email" id="email" name="email" required>
<label for="organization">Education:</label>
<select id="service" name="service" required>
<option value="">Select</option>
<option value="freshman">Freshman</option>
<option value="sophomore">Sophomore</option>
<option value="junior">Junior</option>
<option value="senior">Senior</option>
<option value="masters">Masters</option>
<option value="phd">PhD</option>
<option value="postdoc">Postdoc</option>
<option value="other">Other</option>
</select>
<label for="message">Relevant Experience:</label>
<textarea id="message" name="message" rows="4" placeholder="Please describe in 3-5 sentences your prior experience working with AI, especially large language models, and your interest in working with The AI Clinic."></textarea>
<button type="submit">Submit</button>
</form>
<p id="confirmation" style="display:none; color: green; font-weight: bold;">Thank you for reaching out. We will contact you soon.</p>
<script>
document.getElementById("consultingForm").addEventListener("submit", function(event) {
event.preventDefault(); // Prevent actual form submission
// Hide form and show confirmation message
this.style.display = "none";
document.getElementById("confirmation").style.display = "block";
});
</script>
</div>
<p>For those who are interested in engaging our services or making an office hours appoingment, please see the following pages:</p>
<div class="clinic_row">
<button class="contact_page_button" onclick="/services/01-service-office-hours.html">Office Hours</button>
<button class="contact_page_button" onclick="/services/02-service-consulting.html">Short-Term Consulting</button>
<button class="contact_page_button" onclick="/services/03-service-long-term.html">Long-Term Consulting</button>
</div>