31 lines
800 B
HTML
31 lines
800 B
HTML
|
|
<!DOCTYPE html>
|
||
|
|
<html lang="en">
|
||
|
|
|
||
|
|
<head>
|
||
|
|
<meta charset="UTF-8" />
|
||
|
|
<title>Plurality Vote</title>
|
||
|
|
</head>
|
||
|
|
|
||
|
|
<body>
|
||
|
|
<form id="my-form" action="/plur_vote" method="post">
|
||
|
|
This page is an experiment in voting. Half of the people who visit this site vote using Plurality Voting
|
||
|
|
where a voter selects their top candidate, and the winner is the candidate with the most votes. The other
|
||
|
|
half use Range Voting where voters score all familiar candidates based on how happy they would be should
|
||
|
|
that candidate win. You have been randomly selected to vote using Plurality Voting.
|
||
|
|
<br>
|
||
|
|
<br>
|
||
|
|
|
||
|
|
<table>
|
||
|
|
<tr>
|
||
|
|
<th> </th>
|
||
|
|
<th>Candidate</th>
|
||
|
|
</tr>
|
||
|
|
<!-- INJECT0 -->
|
||
|
|
</table>
|
||
|
|
|
||
|
|
<br>
|
||
|
|
<button type="submit" value="submit">Submit</button>
|
||
|
|
</form>
|
||
|
|
</body>
|
||
|
|
|