98 lines
2.2 KiB
PHP
98 lines
2.2 KiB
PHP
<?php
|
|
session_start();
|
|
?>
|
|
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Facilitated Mode | RS Learning Lab</title>
|
|
|
|
<style>
|
|
body {
|
|
margin: 0;
|
|
background: radial-gradient(circle at top, #0f172a, #020617);
|
|
color: #e5e7eb;
|
|
font-family: "Segoe UI", sans-serif;
|
|
}
|
|
|
|
.page {
|
|
max-width: 900px;
|
|
margin: 80px auto;
|
|
padding: 20px;
|
|
}
|
|
|
|
h1 {
|
|
font-size: 32px;
|
|
margin-bottom: 10px;
|
|
}
|
|
|
|
p.subtitle {
|
|
opacity: 0.75;
|
|
margin-bottom: 35px;
|
|
}
|
|
|
|
.card {
|
|
background: linear-gradient(180deg, #111827, #020617);
|
|
padding: 28px;
|
|
border-radius: 16px;
|
|
margin-bottom: 30px;
|
|
box-shadow: 0 20px 40px rgba(0,0,0,0.55);
|
|
}
|
|
|
|
ul {
|
|
padding-left: 18px;
|
|
line-height: 1.8;
|
|
opacity: 0.9;
|
|
}
|
|
|
|
.btn {
|
|
display: inline-block;
|
|
padding: 14px 28px;
|
|
background: linear-gradient(135deg, #0ea5e9, #2563eb);
|
|
color: #fff;
|
|
border-radius: 12px;
|
|
font-weight: 600;
|
|
text-decoration: none;
|
|
margin-top: 10px;
|
|
box-shadow: 0 10px 25px rgba(14,165,233,0.35);
|
|
}
|
|
|
|
.btn:hover {
|
|
transform: translateY(-1px);
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
|
|
<div class="page">
|
|
|
|
<h1>👨🏫 Facilitated Mode</h1>
|
|
<p class="subtitle">
|
|
Conduct learning style assessments for a group of students in a guided classroom environment.
|
|
</p>
|
|
|
|
<div class="card">
|
|
<h3>How this works</h3>
|
|
<ul>
|
|
<li>Teacher conducts the assessment</li>
|
|
<li>Responses are entered manually or via uploaded data</li>
|
|
<li>No student login required</li>
|
|
<li>Ideal for classrooms & computer labs</li>
|
|
</ul>
|
|
</div>
|
|
|
|
<div class="card">
|
|
<h3>Next Step</h3>
|
|
<p style="opacity:0.8">
|
|
Start a new class session and prepare the student list for assessment.
|
|
</p>
|
|
|
|
<a href="facilitated_inputs.php" class="btn">
|
|
Start Facilitated Session
|
|
</a>
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</body>
|
|
</html>
|