-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
46 lines (44 loc) · 990 Bytes
/
index.html
File metadata and controls
46 lines (44 loc) · 990 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
</head>
<body>
Thank you, I'm finally a free LTI tool
<br/>
<b> Here is some basic information for you</b>
<table>
<tr>
<th><b>Key</b></th>
<th><b>Value</b></th>
</tr>
<tr>
<td>Username</td>
<td>{{ username }}</td>
</tr>
<tr>
<td>User UUID</td>
<td>{{ user_uuid }}</td>
</tr>
<tr>
<td>User BatchUID</td>
<td>{{ user_batch_uid }}</td>
</tr>
<tr>
<td>Course ID</td>
<td>{{ course_id }}</td>
</tr>
<tr>
<td>Course Title</td>
<td>{{ course_title }}</td>
</tr>
<tr>
<td>Course UUID</td>
<td>{{ course_uuid }}</td>
</tr>
<tr>
<td>Course BatchUID</td>
<td>{{ course_batch_uid }}</td>
</tr>
</table>
</body>
</html>