-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
initial pass at a landing page stub - TBD if it works
- Loading branch information
1 parent
33cf2cd
commit 6e5d2d4
Showing
1 changed file
with
34 additions
and
0 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
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> |