-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapproval-rating-calculator.html
180 lines (158 loc) · 5.89 KB
/
approval-rating-calculator.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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
<!DOCTYPE html>
<html>
<head>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-138864817-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-138864817-1');
</script>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="A calculator that will allow you to calculate how many more approved HITs you will need to reach your desired HIT approval rating.">
<title>Mturk Approval Rating Calculator</title>
<link rel="stylesheet" href="css/bulma.min.css">
<link rel="stylesheet" href="css/style.css">
<script defer src="https://use.fontawesome.com/releases/v5.3.1/js/all.js"></script>
<script src="js/jquery-3.4.0.min.js"></script>
</head>
<body class="main">
<!--Navigation Bar-->
<nav class="navbar is-fixed-top is-warning" role="navigation" aria-label="main navigation">
<div class="navbar-brand">
<a class="navbar-item" href="index.html">
<img src="images/mglogo.png" width="120" height="30">
</a>
<a role="button" class="navbar-burger burger" aria-label="menu" aria-expanded="false" data-target="navbarBase">
<span aria-hidden="true"></span>
<span aria-hidden="true"></span>
<span aria-hidden="true"></span>
</a>
</div>
<div id="navbarBase" class="navbar-menu">
<div class="navbar-start">
<a class="navbar-item" href="index.html">
Home
</a>
<a class="navbar-item" href="getting-started.html">
Getting Started
</a>
<div class="navbar-item has-dropdown is-hoverable">
<a class="navbar-link" href="scripts.html">
Scripts
</a>
<div class="navbar-dropdown">
<a class="navbar-item" href="scripts.html">
Script Guide
</a>
<a class="navbar-item" href="primary-scripts.html">
Primary Scripts
</a>
<a class="navbar-item" href="accessory-scripts.html">
Accessory Scripts
</a>
</div>
</div>
<a class="navbar-item" href="leveling-up.html">
Leveling Up
</a>
<div class="navbar-item has-dropdown is-hoverable">
<a class="navbar-link" href="autohotkey-tutorials-overview.html">
Tutorials
</a>
<div class="navbar-dropdown">
<a class="navbar-item" href="autohotkey-tutorials-overview.html">
AutoHotkey
</a>
</div>
</div>
<a class="navbar-item" href="mturk-advantage.html">
Mturk Advantage
</a>
<a class="navbar-item is-active" href="approval-rating-calculator.html">
Approval Rating Calculator
</a>
</div>
<div class="navbar-end">
<div class="navbar-item">
<div class="buttons">
<a id="contact-me" class="button is-light" href="contact-me.html">
<span class="icon">
<i class="fa fa-envelope fa-lg"></i>
</span>
Contact Me
</a>
</div>
</div>
</div>
</div>
</nav>
<!--Burger JScript -->
<script type="text/javascript">
(function() {
var burger = document.querySelector('.burger');
var nav = document.querySelector('#'+burger.dataset.target);
burger.addEventListener('click', function(){
burger.classList.toggle('is-active');
nav.classList.toggle('is-active');
});
})();
</script>
<!-- Breadcrumb -->
<section class="section">
<div class="container">
<nav class="breadcrumb add-extra-padding-top" aria-label="breadcrumbs">
<ul>
<li><a href="index.html">Home</a></li>
<li class="is-active"><a href="#" aria-current="page">Mturk Approval Rating Calculator</a></li>
</ul>
</nav>
</div>
</section>
<!-- Content -->
<section class="section has-background-grey-lighter add-flex no-padding-top">
<div id="calcCenter" class="container">
<h1 class="title">Mturk Approval Rating Calculator</h1>
<p class="subtitle">How many more approved HITs do I need to reach my desired approval rating?</p>
<div class="field">
<label class="label">Current Approved HITs:</label>
<div class="control">
<input class="input" id="approvedHITs" type="text" placeholder="Approved HITs">
</div>
<p class="help is-danger hidden" id="helpText1">This email is invalid</p>
</div>
<div class="field">
<label class="label">Current Rejected HITs:</label>
<div class="control">
<input class="input" id="rejectedHITs" type="text" placeholder="Rejected HITs">
</div>
<p class="help is-danger hidden" id="helpText2">This email is invalid</p>
</div>
<div class="field">
<label class="label">Desired Rating:</label>
<div class="control">
<input class="input" id="desiredRating" type="text" placeholder="99.9">
</div>
<p class="help is-danger hidden" id="helpText3">This email is invalid</p>
</div>
<div class="field">
<div class="control">
<button id="approvalRateCalcSubmit" class="button is-link">Calculate</button>
</div>
<p id="resultText" class="add-padding-top subtitle"></p>
</div>
</div>
</section>
<!-- Footer -->
<footer class="footer">
<div class="content has-text-centered has-text-grey-lighter">
<p>
<strong id="footer-title">Mturk Guide</strong> by <a href="https://www.mturkcrowd.com/members/tsolo315.27/" target="_blank">TSolo315</a>. 2019 © All Rights Reserved.
</p>
</div>
</footer>
<script src="js/approval-rating-calculator.js"></script>
</body>
</html>