Update um.html

updae manual
This commit is contained in:
raulsagrado
2026-03-03 21:51:07 -04:00
committed by GitHub
parent 8f97d73331
commit 9535e61876
+182 -69
View File
@@ -1,95 +1,208 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Coming Soon — WIN</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>WIN Student Goal Tracker - User Manual</title>
<style>
body{
font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, sans-serif;
<style>
body{
font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Ubuntu,sans-serif;
margin:0;
background:#f5f7fa;
color:#111827;
color:#1a1a1a;
line-height:1.6;
}
}
header{
header{
background:#111827;
color:#fff;
padding:3rem 1.5rem;
text-align:center;
}
header h1{
margin:0;
font-size:clamp(2rem, 4vw, 2.5rem);
}
main{
max-width:800px;
margin:3rem auto;
padding:0 1.5rem;
}
.card{
background:#fff;
color:white;
padding:2rem;
border-radius:14px;
box-shadow:0 4px 10px rgba(0,0,0,0.06);
text-align:center;
}
}
.muted{
color:#374151;
margin-top:0.75rem;
}
header h1{
margin:0;
font-size:2rem;
}
.btn{
display:inline-block;
margin-top:1.5rem;
padding:0.8rem 1.1rem;
background:#1d4ed8;
color:#fff;
text-decoration:none;
main{
max-width:900px;
margin:auto;
padding:2rem;
}
.card{
background:white;
padding:2rem;
border-radius:10px;
font-weight:800;
}
box-shadow:0 4px 12px rgba(0,0,0,0.08);
}
.btn:hover{
background:#1e40af;
}
h2{
margin-top:0;
}
footer{
text-align:center;
padding:2rem 1rem;
font-size:0.9rem;
color:#374151;
}
</style>
h3{
margin-top:1.5rem;
}
.muted{
color:#555;
}
.btn{
display:inline-block;
background:#2563eb;
color:white;
text-decoration:none;
padding:10px 18px;
border-radius:6px;
margin-top:20px;
}
.btn:hover{
background:#1d4ed8;
}
</style>
</head>
<body>
<header>
<h1>Coming Soon</h1>
</header>
<header>
<h1>WIN Student Goal Tracker</h1>
<p>User Manual</p>
</header>
<main>
<div class="card">
<h2>User Manual Coming Soon</h2>
<p class="muted">
We are currently building out the User Manual documentation.
Please check back soon for updates.
</p>
<main>
<a href="index.html" class="btn">Back to Home</a>
</div>
</main>
<div class="card">
<footer>
© 2026 WIN Student Goal Tracker
</footer>
<h2>Overview</h2>
<p class="muted">
The WIN Student Goal Tracker is a web-based system designed to help instructors,
program coordinators, and support staff track student goals, progress, and
critical incidents for adult learners with intellectual and developmental
disabilities.
</p>
<p class="muted">
The system centralizes student goal management, progress tracking, and reporting
to support educational programs and improve visibility into student development.
</p>
<h3>Primary Users</h3>
<ul>
<li>Program instructors</li>
<li>Program coordinators</li>
<li>Support staff working with student development programs</li>
</ul>
<h3>System Workflow</h3>
<ol>
<li>User logs into the system.</li>
<li>User selects or creates a student profile.</li>
<li>User creates one or more goals for the student.</li>
<li>User periodically updates progress for each goal.</li>
<li>User logs incidents if relevant to the student's progress.</li>
<li>Dashboard and reports display progress and completion status.</li>
</ol>
<h3>Core Features</h3>
<ul>
<li>Student profile management</li>
<li>Goal creation and tracking</li>
<li>Progress update logging</li>
<li>Incident tracking and documentation</li>
<li>Instructor dashboard for monitoring progress</li>
<li>Structured reporting of goal completion</li>
</ul>
<h3>Typical Instructor Tasks</h3>
<h4>Create a Student Profile</h4>
<ol>
<li>Navigate to the student dashboard.</li>
<li>Select "Create Student".</li>
<li>Enter student information.</li>
<li>Save the student profile.</li>
</ol>
<h4>Create a Goal</h4>
<ol>
<li>Select a student from the dashboard.</li>
<li>Click "Add Goal".</li>
<li>Enter goal title and description.</li>
<li>Define the target timeline.</li>
<li>Save the goal.</li>
</ol>
<h4>Update Goal Progress</h4>
<ol>
<li>Open the student profile.</li>
<li>Select the goal being tracked.</li>
<li>Add a progress update or note.</li>
<li>Update completion status if applicable.</li>
<li>Save the progress update.</li>
</ol>
<h4>Log an Incident</h4>
<ol>
<li>Navigate to the student profile.</li>
<li>Select "Log Incident".</li>
<li>Enter incident details and description.</li>
<li>Save the incident record.</li>
</ol>
<h3>Prototype Version</h3>
<p class="muted">
The current version of the system exists as a user interface prototype created
in Figma. The prototype is used to evaluate usability and gather feedback from
stakeholders before full system implementation.
</p>
<h3>Stakeholder Evaluation</h3>
<p class="muted">
Stakeholders are invited to test the prototype and complete a short usability
survey evaluating how easy it is to perform common tasks within the system.
</p>
<ul>
<li>Task 1: Log in and create a student goal.</li>
<li>Task 2: Review a student dashboard and identify progress.</li>
<li>Task 3: Update progress on an existing goal.</li>
</ul>
<p class="muted">
Feedback collected from this evaluation will guide improvements to the final
system design.
</p>
<a href="index.html" class="btn">Back to Project Home</a>
</div>
</main>
</body>
</html>