2023-09-28 16:36:00 -04:00
|
|
|
<!DOCTYPE html>
|
|
|
|
|
<html lang="en">
|
|
|
|
|
|
|
|
|
|
<head>
|
|
|
|
|
<meta charset="UTF-8" />
|
|
|
|
|
<title>Plurality Vote</title>
|
|
|
|
|
</head>
|
|
|
|
|
|
|
|
|
|
<body>
|
2023-10-02 00:19:45 -04:00
|
|
|
<style>
|
|
|
|
|
form, table, th, td {
|
|
|
|
|
border:1px solid black;
|
|
|
|
|
border-collapse: collapse;
|
|
|
|
|
}
|
|
|
|
|
</style>
|
|
|
|
|
<form id="my-form" style="background-color:#E0E0E0" action="/plur_vote" method="post">
|
2023-09-28 16:36:00 -04:00
|
|
|
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>
|
2023-10-17 16:30:56 -04:00
|
|
|
<!-- INJECT -->
|
2023-09-28 16:36:00 -04:00
|
|
|
</table>
|
|
|
|
|
|
|
|
|
|
<br>
|
|
|
|
|
<button type="submit" value="submit">Submit</button>
|
|
|
|
|
</form>
|
|
|
|
|
</body>
|
|
|
|
|
|