Advertisement
Guest User

Untitled

a guest
Jul 18th, 2018
745
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.87 KB | None | 0 0
  1. <!-- HIT template: DataCollection-v3.0 --><!-- The following snippet
  2. enables the 'responsive' behavior on smaller screens -->
  3. <meta content="width=device-width,initial-scale=1" name="viewport" />
  4. <section class="container" id="DataCollection"><!-- Instructions -->
  5. <div class="row">
  6. <div class="col-xs-12 col-md-12">
  7. <div class="panel panel-primary"><!-- WARNING: the ids "collapseTrigger"
  8. and "instructionBody" are being used to enable expand/collapse feature
  9. --><a class="panel-heading" href="javascript:void(0);"
  10. id="collapseTrigger"><strong>Data Collection Instructions</strong> <span
  11. class="collapse-text">(Click to expand)</span> </a>
  12. <div class="panel-body" id="instructionBody">
  13. <p>Create an account.</p>
  14.  
  15. <ul>
  16. <li>Use the given credentials to create an Instagram account.</li>
  17. <li>Accounts will be verified by the correct success phrase.</li>
  18. </ul>
  19. </div>
  20. </div>
  21. </div>
  22. </div>
  23. <!-- End Instructions --><!-- Data Collection Layout -->
  24.  
  25. <div class="row" id="workContent">
  26. <div class="col-sm-8 col-sm-offset-2">
  27. <p>Use the given details to create an account on Instagram. (<a href="
  28. https://www.instagram.com/">https://www.instagram.com</a>/)</p>
  29.  
  30. <table class="table table-condensed table-bordered">
  31. <colgroup>
  32. <col class="col-xs-6 col-md-4" />
  33. <col class="col-xs-6 col-md-8" />
  34. </colgroup>
  35. <tbody>
  36. <tr>
  37. <td><label>Email:</label></td>
  38. <td>${email}</td>
  39. </tr>
  40. <tr>
  41. <td><label>Name:</label></td>
  42. <td>${name}</td>
  43. </tr>
  44. <tr>
  45. <td><label>Username:</label></td>
  46. <td>${username}</td>
  47. </tr>
  48. <tr>
  49. <td><label>Password:</label></td>
  50. <td>${password}</td>
  51. </tr>
  52. </tbody>
  53. </table>
  54.  
  55. <div class="form-group">
  56. <p>After creating your account. Submit the username <a href="
  57. http://www.fifthstreetstudios.com/turk">here</a> and enter in the success
  58. phrase you see after submission. (<a href="
  59. http://www.fifthstreetstudios.com/turk">
  60. http://www.fifthstreetstudios.com/turk</a>)</p>
  61.  
  62. <p><label for="web_url">Success phrase:</label> <input class="form-control"
  63. id="web_url" name="web_url" placeholder="(e.g 4 dogs)" required="" /></p>
  64. </div>
  65. </div>
  66. </div>
  67. </section>
  68. <!-- End Data Collection Layout --><!-- Please note that Bootstrap CSS/JS
  69. and JQuery are 3rd party libraries that may update their url/code at any
  70. time. Amazon Mechanical Turk (MTurk) is including these libraries as a
  71. default option for you, but is not responsible for any changes to the
  72. external libraries --><!-- External CSS references -->
  73. <link crossorigin="anonymous" href="
  74. https://maxcdn.bootstrapcdn.com/bootstrap/3.0.3/css/bootstrap.min.css"
  75. integrity="sha384-IS73LIqjtYesmURkDE9MXKbXqYA8rvKEp/ghicjem7Vc3mGRdQRptJSz60tvrB6+"
  76. rel="stylesheet" /><!-- Open internal style sheet -->
  77. <style type="text/css">#collapseTrigger{
  78. color:#fff;
  79. display: block;
  80. text-decoration: none;
  81. }
  82. #submitButton{
  83. white-space: normal;
  84. }
  85. .image{
  86. margin-bottom: 15px;
  87. }
  88. </style>
  89. <!-- End internal style sheet --><!-- External JS references --><script
  90. src="https://code.jquery.com/jquery-3.1.0.min.js"
  91. integrity="sha256-cCueBR6CsyA4/9szpPfrX3s49M9vUU5BgtiJj06wt/s="
  92. crossorigin="anonymous"></script><script src="
  93. https://maxcdn.bootstrapcdn.com/bootstrap/3.0.3/js/bootstrap.min.js"
  94. integrity="sha384-s1ITto93iSMDxlp/79qhWHi+LsIi9Gx6yL+cOKDuymvihkfol83TYbLbOw+W/wv4"
  95. crossorigin="anonymous"></script><!-- Open internal javascript --><script>
  96. $(document).ready(function() {
  97. // Instructions expand/collapse
  98. var content = $('#instructionBody');
  99. var trigger = $('#collapseTrigger');
  100. content.hide();
  101. $('.collapse-text').text('(Click to expand)');
  102. trigger.click(function(){
  103. content.toggle();
  104. var isVisible = content.is(':visible');
  105. if(isVisible){
  106. $('.collapse-text').text('(Click to collapse)');
  107. }else{
  108. $('.collapse-text').text('(Click to expand)');
  109. }
  110. });
  111. // end expand/collapse
  112. });
  113. </script><!-- Close internal javascript -->
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement