File size: 2,515 Bytes
a9f160f
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Class Selection | GradeGenie</title>
    <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css">
    <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css">
    <style>
        .class-btn {
            @apply flex-1 min-w-[120px] bg-accent-pink hover:bg-opacity-90 text-white font-poppins py-6 px-4 rounded-lg shadow-md transition duration-300 transform hover:scale-105 text-center;
        }
    </style>
</head>
<body class="font-opensans bg-soft-pink min-h-screen">
    <div class="container mx-auto px-4 py-8">
        <div class="max-w-2xl mx-auto bg-white rounded-xl shadow-lg overflow-hidden">
            <div class="p-6 bg-academic-red">
                <h1 class="text-2xl font-poppins text-white text-center">Select Class</h1>
            </div>

            <div class="p-8">
                <div class="grid grid-cols-2 md:grid-cols-3 gap-4">
                    <button onclick="window.location.href='student-details.html'" class="class-btn">Class 1</button>
                    <button onclick="window.location.href='student-details.html'" class="class-btn">Class 2</button>
                    <button onclick="window.location.href='student-details.html'" class="class-btn">Class 3</button>
                    <button onclick="window.location.href='student-details.html'" class="class-btn">Class 4</button>
                    <button onclick="window.location.href='student-details.html'" class="class-btn">Class 5</button>
                    <button onclick="window.location.href='student-details.html'" class="class-btn">Class 6</button>
                    <button onclick="window.location.href='student-details.html'" class="class-btn">Class 7</button>
                    <button onclick="window.location.href='student-details.html'" class="class-btn">Class 8</button>
                </div>

                <div class="flex justify-between mt-8 no-print">
                    <button onclick="window.location.href='school-details.html'" class="bg-pale-gray hover:bg-opacity-90 text-dark-gray font-poppins py-3 px-6 rounded-lg shadow-md transition duration-300">
                        <i class="fas fa-arrow-left mr-2"></i> Back
                    </button>
                </div>
            </div>
        </div>
    </div>
</body>
</html>