-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstate-resources.html
More file actions
58 lines (58 loc) · 2.86 KB
/
Copy pathstate-resources.html
File metadata and controls
58 lines (58 loc) · 2.86 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Pilot Workforce and Vocational-Rehabilitation Resource Finder</title>
<style>
body{font-family:system-ui,sans-serif;max-width:760px;margin:40px auto;padding:0 20px;line-height:1.5;color:#1f2328}
.card{border:1px solid #d0d7de;border-radius:8px;padding:24px;background:#f6f8fa}
label{display:block;font-weight:700;margin:16px 0 8px}
select{width:100%;padding:10px;font-size:1rem}
#results{margin-top:24px;padding-top:16px;border-top:1px solid #d0d7de}
a{color:#0969da}
.notice{padding:12px;background:#fff8c5;border-radius:6px}
</style>
</head>
<body>
<main class="card">
<h1>Pilot Workforce and VR Resource Finder</h1>
<p>This pilot lists official starting points for five states. It does not determine eligibility, approve training, or guarantee funding.</p>
<p class="notice"><strong>Confirm current requirements directly with the agency.</strong> Vocational-rehabilitation and WIOA services are determined individually.</p>
<label for="state">Select a pilot state</label>
<select id="state">
<option value="">Choose a state</option>
<option value="TX">Texas</option>
<option value="MN">Minnesota</option>
<option value="CA">California</option>
<option value="NY">New York</option>
<option value="FL">Florida</option>
</select>
<section id="results" hidden aria-live="polite"></section>
</main>
<script>
const states={
TX:{name:"Texas",agency:"https://www.twc.texas.gov/services/vocational-rehabilitation"},
MN:{name:"Minnesota",agency:"https://mn.gov/deed/job-seekers/disabilities/"},
CA:{name:"California",agency:"https://www.dor.ca.gov/"},
NY:{name:"New York",agency:"https://www.acces.nysed.gov/vr"},
FL:{name:"Florida",agency:"https://www.rehabworks.org/"}
};
const select=document.getElementById("state");
const results=document.getElementById("results");
select.addEventListener("change",()=>{
const item=states[select.value];
if(!item){results.hidden=true;results.textContent="";return;}
const code=encodeURIComponent(select.value);
results.innerHTML=`<h2>${item.name}</h2>
<ul>
<li><a href="${item.agency}" target="_blank" rel="noopener">Official vocational-rehabilitation agency</a></li>
<li><a href="https://www.careeronestop.org/LocalHelp/EmploymentAndTraining/find-WIOA-training-programs.aspx?location=${code}" target="_blank" rel="noopener">CareerOneStop WIOA training finder</a></li>
<li><a href="https://www.careeronestop.org/LocalHelp/AmericanJobCenters/find-american-job-centers.aspx?location=${code}" target="_blank" rel="noopener">American Job Center finder</a></li>
</ul>
<p>Contact the agency to determine whether a specific program can be included in an approved employment plan.</p>`;
results.hidden=false;
});
</script>
</body>
</html>