-
Notifications
You must be signed in to change notification settings - Fork 207
/
index.html
139 lines (130 loc) · 4.92 KB
/
index.html
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
<!DOCTYPE html>
<html lang="en">
<head>
<title>Codepath Report Card</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="styles.css" />
</head>
<body>
<nav>
<p><img src="codepath.svg"></p>
</nav>
<main class="col">
<h2 class="title">Codepath Report Card</h2>
<div class="student card row">
<div class="info col">
<p class="item">
<span class="label">Name</span>
<span id="student-name">{{STUDENT_NAME}}</span>
</p>
<p class="item">
<span class="label">Advisor</span>
<span id="student-advisor">{{STUDENT_ADVISOR}}</span>
</p>
<p class="item">
<span class="label">Major</span>
<span id="student-major">{{STUDENT_MAJOR}}</span>
</p>
<p class="item">
<span class="label">Grade</span>
<span id="student-grade-level">{{STUDENT_GRADE_LEVEL}}</span>
</p>
<p>
<span class="label">Graduation Year:</span>
<span id="student-graduation-year">2023</span>
</p>
</div>
<div class="image">
<img id="student-image" src="image" alt="image" />
</div>
</div>
<div class="options card col">
<div class="row">
<p>Select Semester</p>
</div>
<div class="row">
<div class="semester-dropdown">
<div class="dropdown closed">
<h2 class="dropdown-button" role="button">
<span class="dropdown-label">Spring Semester</span>
<span class="dropdown-icon">∆</span>
</h2>
<ul class="dropdown-menu">
<li id="fall-semester">Fall Semester</li>
<li id="spring-semester">Spring Semester</li>
<li id="winter-term">Winter Term</li>
</ul>
</div>
</div>
<div class="actions">
<button class="btn">
Filter Results
</button>
</div>
</div>
</div>
<div class="report-card card">
<div id="report-card-table" class="report-card-table">
<div class="table-row table-header">
<h4 class="code-col">Code</h4>
<h4 class="name-col">Name</h4>
<h4 class="sem-col">Semester</h4>
<h4 class="cred-col">Credits</h4>
<h4 class="lett-col">Letter</h4>
<h4 class="pts-col">Points</h4>
</div>
<div class="table-row even course-row row-1">
<h4 class="code-col">LIT 101</h4>
<h4 class="name-col">English Literature 101</h4>
<h4 class="sem-col">Spring 2021</h4>
<h4 class="cred-col"><span className="credit">5</span> credits</h4>
<h4 class="lett-col gpa">B+</h4>
<h4 id="gpa-1" class="pts-col">?</h4>
</div>
<div class="table-row odd course-row row-2">
<h4 class="code-col">CS 50</h4>
<h4 class="name-col">Intro to Computer Science</h4>
<h4 class="sem-col">Spring 2021</h4>
<h4 class="cred-col"><span className="credit">5</span> credits</h4>
<h4 class="lett-col gpa">A-</h4>
<h4 id="gpa-2" class="pts-col">?</h4>
</div>
<div class="table-row even course-row row-3">
<h4 class="code-col">WD 140</h4>
<h4 class="name-col">Modern Web Development</h4>
<h4 class="sem-col">Spring 2021</h4>
<h4 class="cred-col"><span className="credit">5</span> credits</h4>
<h4 class="lett-col gpa">A+</h4>
<h4 id="gpa-3" class="pts-col">?</h4>
</div>
<div class="table-row odd course-row row-4">
<h4 class="code-col">JS 2.0</h4>
<h4 class="name-col">Serverside JavaScript</h4>
<h4 class="sem-col">Spring 2021</h4>
<h4 class="cred-col"><span className="credit">10</span> credits</h4>
<h4 class="lett-col gpa">A-</h4>
<h4 id="gpa-4" class="pts-col">?</h4>
</div>
<div class="table-row totals even">
<h4 class="code-col"></h4>
<h4 class="name-col"></h4>
<h4 class="sem-col">Totals:</h4>
<h4 id="total-credits" class="cred-col"> ? credits </h4>
<h4 class="lett-col"></h4>
<h4 id="total-pts" class="pts-col">?</h4>
</div>
<div class="table-row gpa odd">
<h4 class="code-col"></h4>
<h4 class="name-col"></h4>
<h4 class="sem-col">GPA:</h4>
<h4 class="cred-col"></h4>
<h4 class="lett-col"></h4>
<h4 id="gpa" class="pts-col"> ?</h4>
</div>
</div>
</div>
</main>
<script src="script.js"></script>
</body>
</html>