mirror of
https://github.com/opelly27/WinStudentGoalTracker.git
synced 2026-05-20 02:57:36 +00:00
Update prototype.html
This commit is contained in:
@@ -1 +1,237 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
|
||||
<head>
|
||||
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
|
||||
<title>WIN Prototype Evaluation Instructions</title>
|
||||
|
||||
<meta name="description"
|
||||
content="Instructions for accessing and evaluating the WIN Student Goal Tracker prototype.">
|
||||
|
||||
<meta name="theme-color" content="#111827">
|
||||
|
||||
<script defer data-domain="win.opelly.me" src="https://plausible.io/js/script.js"></script>
|
||||
|
||||
<style>
|
||||
|
||||
body{
|
||||
font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Ubuntu,sans-serif;
|
||||
margin:0;
|
||||
background:#f5f7fa;
|
||||
color:#111827;
|
||||
line-height:1.6;
|
||||
}
|
||||
|
||||
header{
|
||||
background:#111827;
|
||||
color:white;
|
||||
padding:3rem 1.5rem;
|
||||
text-align:center;
|
||||
}
|
||||
|
||||
header h1{
|
||||
margin:0;
|
||||
font-size:2.2rem;
|
||||
}
|
||||
|
||||
main{
|
||||
max-width:900px;
|
||||
margin:0 auto;
|
||||
padding:2rem 1rem 3rem;
|
||||
}
|
||||
|
||||
.card{
|
||||
background:white;
|
||||
border-radius:14px;
|
||||
padding:1.5rem;
|
||||
box-shadow:0 6px 18px rgba(17,24,39,.08);
|
||||
border:1px solid rgba(17,24,39,.06);
|
||||
margin-bottom:1.25rem;
|
||||
}
|
||||
|
||||
h2{ margin-top:0; }
|
||||
|
||||
.muted{
|
||||
color:rgba(17,24,39,.75);
|
||||
}
|
||||
|
||||
.btn{
|
||||
display:inline-block;
|
||||
padding:.7rem 1rem;
|
||||
border-radius:10px;
|
||||
background:#2563eb;
|
||||
color:white;
|
||||
text-decoration:none;
|
||||
font-weight:700;
|
||||
margin-top:.75rem;
|
||||
}
|
||||
|
||||
.btn:hover{
|
||||
background:#1d4ed8;
|
||||
}
|
||||
|
||||
.btn.green{
|
||||
background:#16a34a;
|
||||
}
|
||||
|
||||
.btn.green:hover{
|
||||
background:#15803d;
|
||||
}
|
||||
|
||||
.box{
|
||||
background:#eef2ff;
|
||||
padding:1rem;
|
||||
border-radius:10px;
|
||||
border:1px solid #c7d2fe;
|
||||
margin-top:1rem;
|
||||
}
|
||||
|
||||
code{
|
||||
background:#eef2ff;
|
||||
padding:3px 6px;
|
||||
border-radius:6px;
|
||||
}
|
||||
|
||||
</style>
|
||||
|
||||
</head>
|
||||
|
||||
<body>
|
||||
|
||||
<header>
|
||||
|
||||
<h1>WIN Student Goal Tracker</h1>
|
||||
|
||||
<p class="muted">
|
||||
Prototype Evaluation Instructions
|
||||
</p>
|
||||
|
||||
</header>
|
||||
|
||||
|
||||
<main>
|
||||
|
||||
<section class="card">
|
||||
|
||||
<h2>Step 1 — Open the Prototype</h2>
|
||||
|
||||
<p>
|
||||
Access the deployed prototype at the following URL:
|
||||
</p>
|
||||
|
||||
<div class="box">
|
||||
|
||||
<p style="margin:0">
|
||||
<strong>Prototype URL:</strong><br>
|
||||
<a href="https://win.opelly.me/" target="_blank" rel="noopener noreferrer">
|
||||
https://win.opelly.me/
|
||||
</a>
|
||||
</p>
|
||||
|
||||
<hr style="margin:1rem 0">
|
||||
|
||||
<p style="margin:0">
|
||||
<strong>Login Credentials</strong>
|
||||
</p>
|
||||
|
||||
<ul style="margin-top:.5rem">
|
||||
<li><strong>Username:</strong> <code>opelly@gmail.com</code></li>
|
||||
<li><strong>Password:</strong> <code>1234</code></li>
|
||||
</ul>
|
||||
|
||||
</div>
|
||||
|
||||
<a href="https://win.opelly.me/"
|
||||
class="btn"
|
||||
target="_blank"
|
||||
rel="noopener noreferrer">
|
||||
Open Prototype
|
||||
</a>
|
||||
|
||||
</section>
|
||||
|
||||
|
||||
<section class="card">
|
||||
|
||||
<h2>Step 2 — Complete the Tasks</h2>
|
||||
|
||||
<p class="muted">
|
||||
Please complete the following tasks in the prototype.
|
||||
Do not worry about how to complete them — simply attempt the tasks.
|
||||
</p>
|
||||
|
||||
<ol>
|
||||
|
||||
<li>Log in and create a new student goal.</li>
|
||||
|
||||
<li>Review the student dashboard and identify the status of a goal.</li>
|
||||
|
||||
<li>Update the progress of an existing goal.</li>
|
||||
|
||||
</ol>
|
||||
|
||||
</section>
|
||||
|
||||
|
||||
<section class="card">
|
||||
|
||||
<h2>Step 3 — Submit Feedback</h2>
|
||||
|
||||
<p>
|
||||
After completing the tasks, please provide your feedback using the evaluation survey.
|
||||
</p>
|
||||
|
||||
<a href="https://docs.google.com/forms/d/e/1FAIpQLSd4waAGdgDC9SpA2uvelWQtpJt7sGqsFgc-PCBOMoT99LmLHA/viewform"
|
||||
class="btn green"
|
||||
target="_blank"
|
||||
rel="noopener noreferrer">
|
||||
Submit Evaluation Survey
|
||||
</a>
|
||||
|
||||
</section>
|
||||
|
||||
|
||||
<section class="card">
|
||||
|
||||
<h2>Design References</h2>
|
||||
|
||||
<p class="muted">
|
||||
Initial interface designs used during prototyping.
|
||||
</p>
|
||||
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="https://www.figma.com/design/VyuyyPsPWtZ4jU5O93TknM/C4G-WIN---Initial-Design?node-id=1-5"
|
||||
target="_blank">
|
||||
Desktop Design
|
||||
</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="https://www.figma.com/design/VyuyyPsPWtZ4jU5O93TknM/C4G-WIN---Initial-Design?node-id=1-4"
|
||||
target="_blank">
|
||||
Mobile Design
|
||||
</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
|
||||
</section>
|
||||
|
||||
|
||||
<section class="card">
|
||||
|
||||
<a href="index.html" class="btn">
|
||||
Return to Project Home
|
||||
</a>
|
||||
|
||||
</section>
|
||||
|
||||
</main>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
|
||||
Reference in New Issue
Block a user