forked from jacobmas/MTurkScripts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
MTurkForm.html
119 lines (106 loc) · 5.59 KB
/
MTurkForm.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
<div style="margin: 20px 5px">
<form name="mturk_form" method="post" id="mturk_form" action="https://www.mturk.com/mturk/externalSubmit"><input type="hidden" value="ASSIGNMENT_ID_NOT_AVAILABLE" name="assignmentId" id="assignmentId"><!-- HIT template: DataCollection-v3.0 --><!-- The following snippet enables the 'responsive' behavior on smaller screens -->
<meta content="width=device-width,initial-scale=1" name="viewport">
<section class="container" id="DataCollection"><!-- Instructions -->
<div class="row">
<div class="col-xs-12 col-md-12">
<div class="panel panel-primary"><!-- WARNING: the ids "collapseTrigger" and "instructionBody" are being used to enable expand/collapse feature --><a class="panel-heading" href="javascript:void(0);" id="collapseTrigger"><strong>Data Collection Instructions</strong> <span class="collapse-text">(Click to expand)</span> </a>
<div class="panel-body" id="instructionBody" style="display: none;">
<p>Find the company's Bloomberg company profile page and populate Industry and Sub-Industry below.</p>
<ul>
<li>In Google Search, copy and search each one in the <b>Google Search Name </b>box below, which is the company name with "Bloomberg company profile" added in the end</li>
<li>Click on the result with the title "company name: Company Profile - Bloomberg"</li>
<li>Copy and Paste the information after"<strong>Industry</strong>" and "<strong>Sub-Industry</strong>" (on the left column on the webpage) to the accorrding boxes below</li>
<li>Cope and Paste the URL of the Bloomberg site in <strong>Website Found In </strong>box</li>
</ul>
<p>* Use the <strong>website</strong> listed in the given information as a reference to<strong> verify the company name</strong>. If the company's name and the website don't match, please refer to the official website. </p>
<p>* If there's no Bloomberg page, try find the industry elsewhere on Google and provide the reliable URL of that site. </p>
<p>* We won't pay for the lines with industry says N/A or blank. </p>
<p> </p>
</div>
</div>
</div>
</div>
<!-- End Instructions --><!-- Data Collection Layout -->
<div class="row" id="workContent">
<div class="col-sm-8 col-sm-offset-2">
<table class="table table-condensed table-bordered">
<colgroup>
<col class="col-xs-6 col-md-4">
<col class="col-xs-6 col-md-8">
</colgroup>
<tbody>
<tr>
<td><strong>Lead ID</strong></td>
<td>00Q5000001K0dKlEAJ</td>
</tr>
<tr>
<td><b>Company</b></td>
<td>F&S Produce, Inc.</td>
</tr>
<tr>
<td><b>Google Search Name</b></td>
<td>F&S Produce, Inc. Bloomberg company profile</td>
</tr>
<tr>
<td><strong>Website</strong></td>
<td>https://www.freshcutproduce.com/</td>
</tr>
</tbody>
</table>
<div class="form-group"><span style="font-weight: bold;">Industry</span></div>
<div class="form-group">
<div class="form-group"><input class="form-control" id="web_url" name="Industry" placeholder="" required="" style="line-height: 1.42857; width: 749.99px;" type="text"></div>
<div class="form-group"><span style="font-weight: bold;">Sub-Industry</span></div>
<div class="form-group">
<div class="form-group"><input class="form-control" id="web_url" name="Sub-Industry" placeholder="" required="" style="line-height: 1.42857; width: 749.99px;" type="text"></div>
</div>
<div class="form-group"><label for="web_url">Website Found in</label><input class="form-control" id="web_url" name="Website Found in" placeholder="http://" required="" style="line-height: 1.42857; width: 749.99px;" type="url"></div>
</div>
<div class="form-group"> </div>
</div>
</div>
</section>
<!-- End Data Collection Layout --><!-- Please note that Bootstrap CSS/JS and JQuery are 3rd party libraries that may update their url/code at any time. Amazon Mechanical Turk (MTurk) is including these libraries as a default option for you, but is not responsible for any changes to the external libraries --><!-- External CSS references -->
<link crossorigin="anonymous" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.0.3/css/bootstrap.min.css" integrity="sha384-IS73LIqjtYesmURkDE9MXKbXqYA8rvKEp/ghicjem7Vc3mGRdQRptJSz60tvrB6+" rel="stylesheet"><!-- Open internal style sheet -->
<style type="text/css">#collapseTrigger{
color:#fff;
display: block;
text-decoration: none;
}
#submitButton{
white-space: normal;
}
.image{
margin-bottom: 15px;
}
</style>
<!-- End internal style sheet --><!-- External JS references --><script src="https://code.jquery.com/jquery-3.1.0.min.js" integrity="sha256-cCueBR6CsyA4/9szpPfrX3s49M9vUU5BgtiJj06wt/s=" crossorigin="anonymous"></script><script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.0.3/js/bootstrap.min.js" integrity="sha384-s1ITto93iSMDxlp/79qhWHi+LsIi9Gx6yL+cOKDuymvihkfol83TYbLbOw+W/wv4" crossorigin="anonymous"></script><!-- Open internal javascript --><script>
$(document).ready(function() {
// Instructions expand/collapse
var content = $('#instructionBody');
var trigger = $('#collapseTrigger');
content.hide();
$('.collapse-text').text('(Click to expand)');
trigger.click(function(){
content.toggle();
var isVisible = content.is(':visible');
if(isVisible){
$('.collapse-text').text('(Click to collapse)');
}else{
$('.collapse-text').text('(Click to expand)');
}
});
// end expand/collapse
});
</script><!-- Close internal javascript -->
<div> </div>
<p class="text-center"><input type="submit" id="submitButton"
class="btn btn-primary" value="Submit"></p>
<div class="row" id="resultContent" style="margin: 30px 0px 0px 0px">
<div class="col-sm-8 col-sm-offset-2">
Result Goes here
</div>
</div>
</form>
</div>