<?php
/*
	ini_set('display_errors',1);
	ini_set('display_startup_errors',1);
	error_reporting(-1);
*/
	include("status.php");
	$_SESSION["home"] = 1;
?>

<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">
    <title>Urban Soundtagging</title>
    <link href="css/bootstrap.min.css" rel="stylesheet">
    <link href="css/bootstrap-theme.min.css" rel="stylesheet">
    <link href="style.css" rel="stylesheet">

    <!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
    <!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
    <!--[if lt IE 9]>
      <script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
      <script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
    <![endif]-->
  </head>
  <body>
    <div class="container">

      <div class="starter-template section1">
        <h2>Consent Form</h2>
        <h3>Please read carefully before preceding</h3>
        <div>
<!--        <textarea id="consentForm" class="form-control" style="resize: none; font-size:larger" rows="35" readonly>
-->
<p class="details" style="border:1px solid">
You have been invited to take part in a research study. The purpose of this study is to gain insight into the influence of interaction design on environmental sound annotation. This study is being conducted by researchers at New York University. If you agree to be in this study, you will be asked to do the following:

1. Provide some background information about yourself (we do not ask for any personally identifying information such as name, email, etc.).

2. Listen to environmental sound recordings through headphones and label what you hear.

Participation in this study will involve listening to short audio recordings and labeling them at your own pace. The full study is expected to take less than 60 minutes. You will be paid $0.05 per labeled recording (which takes a few seconds). Please note you must be registered on Mechanical Turk and must have accessed this study via Mechanical Turk to be paid.

There are no known risks associated with your participation in this research beyond those of everyday life. Any information that is obtained in connection with this study and that can be identified with you will remain confidential and will not be disclosed.

Participation in this study is voluntary. Your decision whether or not to participate will not prejudice your future relationships with your workplace. If you decide to participate, you are free to discontinue participation at any time without prejudice.

If there is anything about the study or your participation that is unclear or that you do not understand, or if you have questions or wish to report a research related problem, you may contact Dr. Justin Salamon (justin.salamon@nyu.edu).

For questions about your rights as a research participant, you may contact the University Committee on Activities Involving Human Subjects, New York University, 665 Broadway, Suite 804, New York, NY 10012 at 212-998-4808 or ask.humansubjects@nyu.edu.
            </p>
            </div>
            <div>
            <label><input type="checkbox" onclick="toggleAccept()"> I Agree</label>
            </div>
            <button class="btn btn-default btn-lg disabled" id="continue" onclick="location.href='id.php'">Continue</button>
        </div>
    </div>
    
    <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
    <script src="js/bootstrap.min.js"></script>
    <script>
        function toggleAccept() {
            $("#continue").toggleClass("disabled");
        }
    </script>
  </body>
</html>
