-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
80 lines (58 loc) · 2.79 KB
/
Copy pathindex.html
File metadata and controls
80 lines (58 loc) · 2.79 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description"
content="A crowdsourcing website for the game Magic: The Gathering that allows users to write and verify alt text for card art.">
<title>AltScry</title>
<link rel="icon" href="./images/favicon/favicon.svg" type="image/svg+xml">
<link rel="alternate icon" href="./images/favicon/favicon.ico" type="image/x-icon">
<link rel="apple-touch-icon" href="./images/favicon/apple-touch-icon.png">
<link rel="stylesheet" href="./styles/styles.css">
</head>
<body>
<canvas id="canvas"></canvas>
<div class="container">
<div class="banner">
<div class="switch-buttons">
<span class="active"></span>
<button class="switch-button-contribute active-case">Contribute</button>
<button class="switch-button-verify">Verify</button>
</div>
<button id="download-button">Download CSV</button>
</div>
<div id="left-panel">
<a id="card-link" target="_blank" rel="noopener noreferrer">
<span id="card-text"></span>
</a>
<div class="card-flip-container">
<div class="card-flip-inner">
<div class="card-front">
<img id="current-card" alt="The front of a Magic card">
</div>
<div class="card-back">
<img src="./images/cards/cardBack.png" id="reverse-card"
alt="The back of a Magic card with the AltScry logo">
</div>
</div>
</div>
<button id="rotate-button" type="button">Rotate 90°</button>
</div>
<div id="right-panel">
<b id="alt-text-label">Alt Text:</b>
<textarea id="alt-text-box" placeholder="Write alt text here"></textarea>
<button class="judge-button" id="submit-button" type="button">Skip</button>
<div id="judge-button-container">
<button class="judge-button" id="reject-button" type="button">Reject</button>
<button class="judge-button" id="confirm-button" type="button">Confirm</button>
</div>
</div>
</div>
<a id="github-link" href="https://github.com/sidewalkfox/AltScry" target="_blank" rel="noopener noreferrer" aria-label="View AltScry on GitHub">
<img id="github-logo" src="images/githubLogo.svg" alt="GitHub logo">
</a>
<script defer src="./scripts/smoke.js"></script>
<script type="module" src="./scripts/script.js"></script>
</body>
</html>