-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Linter: Use prettier instead of StandardJS
- Loading branch information
Showing
17 changed files
with
577 additions
and
3,823 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
{} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,34 +1,34 @@ | ||
<!DOCTYPE html> | ||
<!doctype html> | ||
<html lang="fr"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<head> | ||
<meta charset="UTF-8" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||
<title>Election verifier</title> | ||
<link rel="stylesheet" type="text/css" href="style.css"> | ||
</head> | ||
<body> | ||
<link rel="stylesheet" type="text/css" href="style.css" /> | ||
</head> | ||
<body> | ||
<div class="container"> | ||
<!-- | ||
<!-- | ||
<input type="text" id="uuid" placeholder="Election uuid" value="uSvjxvtjMbuFvg"> | ||
<button id="verify">Verify</button> | ||
--> | ||
<h2>Import your .bel file</h2> | ||
<input type="file" id="file" placeholder="Import your .bel file"> | ||
<div id="content"> | ||
<h3 id="top"></h3> | ||
<h3>Database</h3> | ||
<div id="database"></div> | ||
<h3>Setup</h3> | ||
<div id="setup"></div> | ||
<h3>Ballots</h3> | ||
<div id="ballots"></div> | ||
<h3>EncryptedTally</h3> | ||
<div id="encryptedTally"></div> | ||
<h3>PartialDecryptions</h3> | ||
<div id="partialDecryptions"></div> | ||
<h3></h3> | ||
</div> | ||
<h2>Import your .bel file</h2> | ||
<input type="file" id="file" placeholder="Import your .bel file" /> | ||
<div id="content"> | ||
<h3 id="top"></h3> | ||
<h3>Database</h3> | ||
<div id="database"></div> | ||
<h3>Setup</h3> | ||
<div id="setup"></div> | ||
<h3>Ballots</h3> | ||
<div id="ballots"></div> | ||
<h3>EncryptedTally</h3> | ||
<div id="encryptedTally"></div> | ||
<h3>PartialDecryptions</h3> | ||
<div id="partialDecryptions"></div> | ||
<h3></h3> | ||
</div> | ||
</div> | ||
<script type="module" src="src/web.js"></script> | ||
</body> | ||
</body> | ||
</html> |
Oops, something went wrong.