Spaces:
Sleeping
Sleeping
Create portal.html
Browse files- templates/portal.html +19 -0
templates/portal.html
ADDED
@@ -0,0 +1,19 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<!DOCTYPE html>
|
2 |
+
<html lang="en">
|
3 |
+
<head>
|
4 |
+
<meta charset="UTF-8">
|
5 |
+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
6 |
+
<title>Flashcard Sets</title>
|
7 |
+
<link rel="stylesheet" href="{{ url_for('static', filename='style.css') }}">
|
8 |
+
</head>
|
9 |
+
<body>
|
10 |
+
<div class="sets">
|
11 |
+
<h1>Flashcard Sets</h1>
|
12 |
+
<ul>
|
13 |
+
<li><a href="{{ url_for('index', set='A', index=0) }}">Set A - Plastics</a></li>
|
14 |
+
<li><a href="{{ url_for('index', set='B', index=0) }}">Set B - Renewable Energy</a></li>
|
15 |
+
<li><a href="{{ url_for('index', set='C', index=0) }}">Set C - Report Writing</a></li>
|
16 |
+
</ul>
|
17 |
+
</div>
|
18 |
+
</body>
|
19 |
+
</html>
|