Skip to content

Commit

Permalink
initial pass at a landing page stub - TBD if it works
Browse files Browse the repository at this point in the history
  • Loading branch information
windoverwater committed Feb 29, 2024
1 parent 33cf2cd commit 6e5d2d4
Showing 1 changed file with 34 additions and 0 deletions.
34 changes: 34 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Landing Page - User Story 1</title>
<style>
/* box debugging
* {
border-style: solid;
border-color: red;
}
*/
</style>
</head>
<body>
<h2>Welcome to a VoteTrackr+ Demo</h2>
<p>This is a simulated conceptual demo of what voting in an election that is
integrated with the VoteTrackr+ technology</p>
<p>You may vote as many times as you would like</p>
<p>Please click the continue button to start voting</p>
<p></p>
<p></p>
<p></p>
<button id="vote" class="float-left submit-button" >Vote</button>

<script>
<script>
document.getElementById("vote").onclick = function () {
location.href = "voting.html";
};
</script>
</body>
</html>

0 comments on commit 6e5d2d4

Please sign in to comment.