-
Notifications
You must be signed in to change notification settings - Fork 0
/
compensate_hit.htm
74 lines (52 loc) · 2.84 KB
/
compensate_hit.htm
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
<!--
Modified from Bootstrap.js exmaples
http://getbootstrap.com/getting-started/#examples
-->
<!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 -->
<title>Compensate HIT</title>
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css">
<!-- Optional theme -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap-theme.min.css">
<link rel="stylesheet" href="js/compensate-hit.css">
<!-- jQuery (necessary for Bootstrap's JavaScript plugins) -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
<!-- Latest compiled and minified JavaScript -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/js/bootstrap.min.js"></script>
<script src="js/compensate-hit.js"></script>
</head>
<body >
<div class="container">
<form class="form-signin" id="compensate-form">
<input type="hidden" id="compensate-form-assignmentId" name="assignmentId"></input>
<h2 class="form-signin-heading">Compensate HIT</h2>
<h4 class='instruct'><span class='highlight'>For specific workers only.</span> Other workers will be rejected.</h4>
<label for="inputHitId" class="sr-only">Compensated HIT ID</label>
<input type="text" name="inputHitId" id="inputHitId" class="form-control" placeholder="Compensated HIT ID" required="" autofocus="">
<!--
<label for="inputHitIdSurvey" class="sr-only">(Optional) How do you think about the HIT</label>
<input type="text" id="inputHitIdSurvey" class="form-control form-survey" placeholder="(Optional) How do you think about the HIT">
-->
<!--
<label for="inputPassword" class="sr-only">Your Worker ID</label>
<input type="text" id="inputPassword" class="form-control" placeholder="Your Worker ID" required="">
-->
<!--
<div class="checkbox">
<label>
<input type="checkbox" value="remember-me"> Remember me
</label>
</div>
-->
<label for="comment" class="sr-only">(Optional) Comments</label>
<textarea class="form-control" rows="5" id="comment" name="comment" placeholder="(Optional) Give us some feedback about the compensated HIT"></textarea>
<button type="submit" class="btn btn-lg btn-primary btn-block">Submit</button>
</form>
</div> <!-- /container -->
</html>