-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest.html
More file actions
195 lines (168 loc) · 5.43 KB
/
test.html
File metadata and controls
195 lines (168 loc) · 5.43 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>HUD Assessment Guidelines</title>
<!-- Google Fonts -->
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap" rel="stylesheet">
<!-- Bootstrap CSS -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/css/bootstrap.min.css" rel="stylesheet">
<!-- Styles -->
<style>
body {
font-family: 'Roboto', sans-serif;
background-color: #f8f9fa;
color: #343a40;
margin: 0;
padding-top: 56px; /* Adjusted for fixed navbar height */
}
h1, h2, h3 {
font-weight: 700;
}
h1 {
color: #007bff;
margin-bottom: 20px;
}
h2 {
color: #17a2b8;
margin-top: 40px;
margin-bottom: 20px;
}
h3 {
color: #28a745;
margin-top: 30px;
margin-bottom: 15px;
}
p {
line-height: 1.8;
font-size: 18px;
}
ul {
margin-left: 20px;
}
ul li {
margin-bottom: 10px;
}
.container {
max-width: 900px;
margin: 0 auto;
padding: 40px 20px;
background-color: #ffffff;
box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
}
footer {
text-align: center;
margin-top: 40px;
padding: 20px;
background-color: #343a40;
color: #ffffff;
}
/* Summary Section */
.summary-container {
background-color: #e9f7ef;
padding: 30px;
border-left: 5px solid #28a745;
margin-top: 40px;
margin-bottom: 40px;
}
.summary-container h2 {
color: #28a745;
margin-bottom: 20px;
}
.summary-container ul li {
background: #ffffff;
padding: 10px;
margin: 5px 0;
border-radius: 5px;
border-left: 3px solid #28a745;
}
</style>
</head>
<body>
<!-- Navbar Placeholder -->
<div id="navbar-placeholder"></div>
<!-- Main Content -->
<div class="container">
<h1 class="text-center">HUD Assessment Guidelines</h1>
<h2>Move-in Assessment</h2>
<p>
There is no requirement to complete a new assessment upon move-in. However, HUD guidelines indicate the need for updating specific records during the project stay, when income or household changes occur.
</p>
<h3>Income and Sources</h3>
<p>
An <strong>Income and Sources</strong> record must be created during the project stay if there is any change in income or sources, at any time during the resident's stay at Housing Hope. This includes:
</p>
<ul>
<li>When a minor child enters or leaves the household, leading to a change in household income.</li>
<li>When a minor child turns 18, any income associated with the new adult client should be recorded.</li>
</ul>
<p>
If income shifts between household members, an additional record must be created to reflect this. 'Information Date' for these records should match the date of data collection.
</p>
<h3>Additional Required Records</h3>
<p>
According to HUD's Data Standards Manual for 2024, the following areas also require updates when changes occur:
</p>
<ul>
<li><strong>Domestic Violence:</strong> Records should be updated to ensure swift anonymization in the database.</li>
<li><strong>Non-Cash Benefits</strong></li>
<li><strong>Health Insurance</strong></li>
</ul>
<h3>Recommended Updates</h3>
<p>While not required, it is recommended to update the following records during the project stay:</p>
<ul>
<li>Substance Use</li>
<li>Physical Disability</li>
<li>Developmental Disability</li>
<li>Chronic Health Condition</li>
<li>Mental Health Disorder</li>
</ul>
<h3>Streamlined Assessment Process</h3>
<p>
We will be updating the assessment form in Apricot to allow updates for specific elements, eliminating the need to complete the entire form when changes occur.
</p>
<!-- Summary Section -->
<div class="summary-container">
<h2>Summary</h2>
<p><strong>Must Update HUD upon any changes:</strong></p>
<ul>
<li>Income and Non-Cash Benefits</li>
<li>Domestic Violence</li>
<li>Health Insurance</li>
</ul>
<p><strong>Recommended to update HUD upon any changes:</strong></p>
<ul>
<li>Substance Use</li>
<li>Physical Disability</li>
<li>Developmental Disability</li>
<li>Chronic Health Condition</li>
<li>Mental Health Disorder</li>
</ul>
</div>
</div>
<footer>
<p>© Housing Hope Data Team 2024</p>
</footer>
<!-- Bootstrap JS Bundle with Popper -->
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/js/bootstrap.bundle.min.js"></script>
<!-- Load external navbar -->
<script>
// Fetch and insert the navbar
fetch('navbar.html')
.then(response => response.text())
.then(data => {
// Create a temporary element to hold the fetched HTML
var tempDiv = document.createElement('div');
tempDiv.innerHTML = data;
// Extract and execute any scripts from the fetched HTML
var scripts = tempDiv.querySelectorAll('script');
scripts.forEach(function(script) {
eval(script.innerText);
});
// Insert the navbar HTML into the placeholder
document.getElementById('navbar-placeholder').innerHTML = tempDiv.innerHTML;
});
</script>
</body>
</html>