CnJaFlashC-1 / templates /portal.html
OzoneAsai's picture
Update templates/portal.html
536cc4d verified
raw
history blame
949 Bytes
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Flashcard Sets</title>
<link rel="stylesheet" href="{{ url_for('static', filename='style.css') }}">
</head>
<body>
<div class="sets">
<h1>Flashcard Sets</h1>
<ul>
<li><a href="{{ url_for('flashcards_page', set='A', index=0) }}">Set A - </a></li>
<li><a href="{{ url_for('flashcards_page', set='B', index=0) }}">Set B - </a></li>
<li><a href="{{ url_for('flashcards_page', set='C', index=0) }}">Set C - </a></li>
<li><a href="{{ url_for('flashcards_page', set='D', index=0) }}">Set D -</a></li>
<li><a href="{{ url_for('flashcards_page', set='F', index=0) }}">Set F - </a></li>
<li><a href="{{ url_for('flashcards_page', set='G', index=0) }}">Set G - </a></li>
</ul>
</div>
</body>
</html>