51 lines
1.8 KiB
Plaintext
51 lines
1.8 KiB
Plaintext
|
@page
|
||
|
@model Vote.Pages.IndexModel
|
||
|
|
||
|
<!DOCTYPE html>
|
||
|
<html>
|
||
|
<head>
|
||
|
<meta charset="utf-8">
|
||
|
<title>@Model.OptionA vs @Model.OptionB!</title>
|
||
|
<base href="/index.html">
|
||
|
<meta name="viewport" content="width=device-width, initial-scale = 1.0">
|
||
|
<meta name="keywords" content="docker-compose, docker, stack">
|
||
|
<meta name="author" content="Docker DevRel team">
|
||
|
<link rel="stylesheet" href="~/css/site.css" />
|
||
|
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.4.0/css/font-awesome.min.css">
|
||
|
</head>
|
||
|
<body>
|
||
|
<div id="content-container">
|
||
|
<div id="content-container-center">
|
||
|
<h3>@Model.OptionA vs @Model.OptionB!</h3>
|
||
|
<form method="POST" id="choice" name='form'>
|
||
|
<button id="a" type="submit" name="vote" class="a" value="a">@Model.OptionA</button>
|
||
|
<button id="b" type="submit" name="vote" class="b" value="b">@Model.OptionB</button>
|
||
|
</form>
|
||
|
<div id="tip">
|
||
|
(Tip: you can change your vote)
|
||
|
</div>
|
||
|
<div id="hostname">
|
||
|
Processed by container ID @System.Environment.MachineName
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
<script src="~/js/jquery-1.11.1-min.js" type="text/javascript"></script>
|
||
|
@*<script src="//cdnjs.cloudflare.com/ajax/libs/jquery-cookie/1.4.1/jquery.cookie.js"></script>*@
|
||
|
|
||
|
<script>
|
||
|
var vote = "@Model.Vote";
|
||
|
|
||
|
if(vote == "a"){
|
||
|
$(".a").prop('disabled', true);
|
||
|
$(".a").html('@Model.OptionA <i class="fa fa-check-circle"></i>');
|
||
|
$(".b").css('opacity','0.5');
|
||
|
}
|
||
|
if(vote == "b"){
|
||
|
$(".b").prop('disabled', true);
|
||
|
$(".b").html('@Model.OptionB <i class="fa fa-check-circle"></i>');
|
||
|
$(".a").css('opacity','0.5');
|
||
|
}
|
||
|
</script>
|
||
|
</body>
|
||
|
</html>
|