-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcheck_for_updates.html
More file actions
31 lines (27 loc) · 992 Bytes
/
check_for_updates.html
File metadata and controls
31 lines (27 loc) · 992 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
<!DOCTYPE html>
<html lang="en-US">
<head>
<link href="common.css" rel="stylesheet" type="text/css"/>
<link href="check_for_updates.css" rel="stylesheet" type="text/css">
<meta charset="UTF-8">
<title id="title">Check for Updates</title>
</head>
<body>
<div>
<p id="app_and_version"></p>
<a id="website_link" class="link"></a>
</div>
<div id="current_version">
<p>You are running the most recent version of EBTCalc.</p>
</div>
<div id="obsolete_version">
<p>There is a more recent version of EBTCalc available. Click the Download button to download it.</p>
</div>
<div id="action_buttons">
<button id="download" class="action-button button" disabled>Download</button>
<button id="donate" class="action-button button">Donate</button>
<button id="close" class="action-button button">Close</button>
</div>
<script src="src/check_for_updates.js"></script>
</body>
</html>