Files
rangevote/plurvote.html
2023-10-18 15:17:31 -04:00

38 lines
1.2 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>Plurality Vote</title>
</head>
<body>
<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">
This page is an experiment in voting. Half of the people who visit this site will use Plurality Voting, and half will use Range Voting. I do ask that anyone unlikely to vote in the Republican primary use the "Just show me the Results" option below.<br><br>
In Plurality Voting, voters select their top candidate, and the winner is the candidate with the most votes. Most elections in the United States use Plurality Voting.<br><br>
In Range Voting, voters score all candidates <i>that they know</i> based on how happy they would be should that candidate win. <br><br>
<b>You have been randomly selected to vote using Plurality Voting.</b>
<br>
<br>
<table>
<tr>
<th> </th>
<th>Candidate</th>
</tr>
<!-- INJECT -->
</table>
<br>
<button type="submit" value="submit">Submit</button><br>
Or, just show me the <a href="results">Results</a>
</form>
</body>