-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
92 lines (69 loc) · 3.18 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags -->
<meta name="description" content="">
<meta name="author" content="">
<link rel="icon" href="../../favicon.ico">
<title>Simple SNAP Benefits Calculator</title>
<!-- Bootstrap core CSS -->
<link href="vendor/css/bootstrap.min.css" rel="stylesheet">
<!-- Custom styles for this template -->
<link href="css/main.css" rel="stylesheet">
<! -- Knockout -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/knockout/3.3.0/knockout-min.js" type="text/javascript"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/knockout-validation/2.0.3/knockout.validation.min.js"></script>
</head>
<body>
<div class="container">
<form class="form-signin">
<h3 class="form-signin-heading">SNAP Benefits Calculator</h2>
<label for="inputEmail">Monthly Income</label>
<input type="text"
id="monthlyIncomeInput"
class="form-control"
placeholder="Enter monthly income here"
data-bind="textInput: monthlyIncome"
autofocus>
<br />
<br />
<label for="inputEmail">Number of People in Household</label>
<input type="text" id="numberOfPeopleInHouseholdLabel" class="form-control" data-bind="textInput: peopleInHousehold" >
<br />
<br />
<label >Maximum SNAP Benefits</label>
<input type="input" id="maxSnapBenefitsField" class="form-control" data-bind="value: formattedMaxBenefits()" disabled>
<br />
<br />
<label for="adjustedSnapBenefits" >Income Adjusted SNAP Benefits</label>
<input type="adjustedValue" id="adjustedSnapBenefitsField" class="form-control" data-bind="value: formattedAdjustedAllotment()" disabled>
<p>
For more information and explanation of benefits, click <a href="http://www.fns.usda.gov/snap/how-much-could-i-receive" target="_blank">here</a>.
</p>
<div class="text-small text-italic">
<p>Made by <a href="https://alecpapierniak.com">Alec Papierniak</a> | <a href="mailto:[email protected]">E-mail Me</a></p>
<p>Page last updated 2015-10-10</p>
</div>
</form>
</div> <!-- /container -->
<script src="js/main.js"></script>
<!-- Piwik -->
<script type="text/javascript">
var _paq = _paq || [];
_paq.push(['trackPageView']);
_paq.push(['enableLinkTracking']);
(function() {
var u="//alecpapierniak.com/piwik/";
_paq.push(['setTrackerUrl', u+'piwik.php']);
_paq.push(['setSiteId', 1]);
var d=document, g=d.createElement('script'), s=d.getElementsByTagName('script')[0];
g.type='text/javascript'; g.async=true; g.defer=true; g.src=u+'piwik.js'; s.parentNode.insertBefore(g,s);
})();
</script>
<noscript><p><img src="//alecpapierniak.com/piwik/piwik.php?idsite=1" style="border:0;" alt="" /></p></noscript>
<!-- End Piwik Code -->
</body>
</html>