mirror of
https://github.com/opelly27/WinStudentGoalTracker.git
synced 2026-05-20 01:47:41 +00:00
96 lines
1.7 KiB
HTML
96 lines
1.7 KiB
HTML
<!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>
|
|
|
|
<style>
|
|
body{
|
|
font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, sans-serif;
|
|
margin:0;
|
|
background:#f5f7fa;
|
|
color:#111827;
|
|
line-height:1.6;
|
|
}
|
|
|
|
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;
|
|
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;
|
|
}
|
|
|
|
.btn{
|
|
display:inline-block;
|
|
margin-top:1.5rem;
|
|
padding:0.8rem 1.1rem;
|
|
background:#1d4ed8;
|
|
color:#fff;
|
|
text-decoration:none;
|
|
border-radius:10px;
|
|
font-weight:800;
|
|
}
|
|
|
|
.btn:hover{
|
|
background:#1e40af;
|
|
}
|
|
|
|
footer{
|
|
text-align:center;
|
|
padding:2rem 1rem;
|
|
font-size:0.9rem;
|
|
color:#374151;
|
|
}
|
|
</style>
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<header>
|
|
<h1>Coming Soon</h1>
|
|
</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>
|
|
|
|
<a href="index.html" class="btn">Back to Home</a>
|
|
</div>
|
|
</main>
|
|
|
|
<footer>
|
|
© 2026 WIN Student Goal Tracker
|
|
</footer>
|
|
|
|
</body>
|
|
</html>
|