-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdraft1846Goodby.html
More file actions
61 lines (57 loc) · 1.75 KB
/
draft1846Goodby.html
File metadata and controls
61 lines (57 loc) · 1.75 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
<!doctype html>
<html lang="en">
<!--
The draft1846Goodby.html page is the exit page for draft1846 and
contains a goodby message and nothing else.
Copyright (c) 2020 Richard E. Price under the The MIT License.
A copy of this license can be found in the LICENSE.text file.
-->
<head>
<meta charset="utf-8" />
<title>DRAFT1846 - Private Company Draft Tool For 1846 Games</title>
<link rel="shortcut icon" href="images/favicon.ico">
<link rel="stylesheet" href="style/draft1846Com.css">
<link rel="stylesheet" href="style/draft1846Goodby.css">
<script type="text/javascript" src="scripts/jquery.js">
</script>
<script>
$(function() {
var url_string = window.location.href; //window.location.href
var url = new URL(url_string);
var type = url.searchParams.get("msgtype");
if (type === '1') {
$("#content").show();
}
});
</script>
</head>
<body>
<div id="topofpage">
<div id="logo">
<img src="images/logo.png" alt="Logo"/>
</div>
<div id="heading">
<h1>DRAFT1846</h1>
<h1>The Private Company Draft Tool For 1846 Games</h1>
</div>
</div>
<div id="restofpage">
<div id="content">
<p style="font-size: 130%">
<b>This DRAFT1846 startup session has ended.</b>
</p>
<p>The rest of the draft process will be driven by emails.<br>
Keep an eye on your in box for your confirmation email.
</p>
</div>
<div id="content2">
<p style="font-size: 130%">
<b>Thank you for using DRAFT1846.</b>
</p>
<p>
Goodbye for now and always remember "Have Fun!"
</p>
</div>
</div>
</body>
</html>