-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
105 lines (100 loc) · 3.95 KB
/
index.html
File metadata and controls
105 lines (100 loc) · 3.95 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
<!doctype html>
<html lang="en">
<!--
The index.html page is the introductory page to draft1846 and
contains a welcome message. It should be used to start a new
private draft.
Copyright (c) 2019 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/draft1846Index.css" />
<script type="text/javascript" src="scripts/jquery.js">
</script>
<script type="text/javascript" src="scripts/draft1846Com.js">
</script>
<script>
$(function() {
$('.error').hide();
var vernumb = "This is version " + D1846.version + " of DRAFT1846.<br>";
vernumb += "<a href='https://wiki.board18.org/w/DRAFT1846_Player%27s_Guide'>";
vernumb += "This is a link to the DRAFT1846 Player's Guide.</a>";
$('#vers').html(vernumb);
$("#button1").on("click",function(){
var pnumb = $("#players").val();
var start = "draft1846Start.php?players=";
start = start+pnumb;
window.location = start;
return false;
}); // end start button click
});
</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" style="padding-right: 20px">
<p style="font-size: 130%"><b>Welcome to DRAFT1846.</b>
</p>
<p id="vers">
This is version x of DRAFT1846.
</p>
<p>DRAFT1846 is a utility for play by email 1846 games.
This utility mediates the private company draft phase of 1846.
It was written to be used with BOARD18 but it should be
usable with any Play By Email 1846 game.
</p>
<p><b>DRAFT1846 uses
email messages to pass control from player to player.</b>
</p>
<p>
The next page displays a form in to which the names and
email addresses of the players should be entered.
For less than 5 players, it also displays a selection box
which should be used to indicate the unused privates.
</p>
<p>
After you have adjusted the number of players, if necessary,
please press the "Start the draft setup" button to continue to
the next page.
</p>
<p>
After providing the information on
the next page, please press "enter". This will cause
DRAFT1846 to validate the entries and create a database
table entry for this draft. It will then send an email to each
player to verify the entered email addresses. When all players
have replied to these emails, the draft will be started.
</p>
<p style="color: red">
PLEASE NOTE: The private draft in 1846 occurs in reverse
player order. But the players should be entered on the form on
the next page <b>in the same order</b> that they are entered on
the spreadsheet, that is in the normal game order. DRAFT1846
will take care of reversing this order in the draft.
</p>
</div>
<div id="forms">
<form name="form1" action="" >
<label for="players">Number of Players [3 to 5]: </label>
<input type="number" name="players" id="players"
value="4" min="3" max="5">
<input type="button" name="pwbutton" class="pwbutton"
id="button1" value="Start the draft setup." >
</form>
</div>
</div>
</body>
</html>