luulinh90s's picture
add text2sql vis
68eb98f
raw
history blame
3.7 kB
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Informed Consent - TableQA Study</title>
<style>
body {
font-family: Arial, sans-serif;
line-height: 1.6;
color: #333;
max-width: 800px;
margin: 0 auto;
padding: 20px;
}
h1 {
color: #2c3e50;
text-align: center;
}
.consent-box {
border: 1px solid #bdc3c7;
padding: 20px;
margin-top: 20px;
background-color: #ecf0f1;
}
.highlight {
font-weight: bold;
color: #e74c3c;
}
.button {
display: inline-block;
background-color: #3498db;
color: white;
padding: 10px 20px;
text-decoration: none;
border-radius: 5px;
margin-top: 20px;
}
.button:hover {
background-color: #2980b9;
}
</style>
</head>
<body>
<h1>Informed Consent for TableQA Study</h1>
<div class="consent-box">
<h2>Study Information</h2>
<p>You are invited to participate in a research study on Table Question Answering (TableQA) systems. This study aims to improve how AI systems explain their reasoning when answering questions based on tabular data.</p>
<h2>Study Duration and Requirements</h2>
<ul>
<li>The entire study will take approximately <span class="highlight">20 minutes</span> to complete.</li>
<li>Please perform this study on a <span class="highlight">computer</span> (not a phone).</li>
<li>Do not seek help from the Internet or other people during the study.</li>
</ul>
<h2>Study Structure</h2>
<ol>
<li>Introduction to TableQA and task explanation</li>
<li>Main study: 10 questions about TableQA explanations</li>
</ol>
<!-- <h2>Compensation</h2>-->
<!-- <p>Compensation will be provided only upon successful completion of the entire study, including passing the qualification test and completing all 30 main study questions.</p>-->
<h2>Benefits</h2>
<p>Your participation will contribute to the development of AI systems that can better explain their reasoning to humans, particularly in the domain of question answering from tabular data. There are no known risks associated with this study.</p>
<h2>Data Usage and Confidentiality</h2>
<p>All data collected will be anonymized and used solely for research purposes. Your personal information will be kept confidential.</p>
<h2>Voluntary Participation</h2>
<p>Your participation in this study is entirely voluntary. You may choose to withdraw at any time without any consequences.</p>
<h2>Contact Information</h2>
<p>If you have any questions or concerns about this study, please contact Anh Nguyen's lab at Auburn CSSE department via anh.ng8@gmail.com.</p>
<p class="highlight">By clicking "I Agree" below, you confirm that you have read and understood this informed consent, and you agree to participate in this TableQA study under the terms described above.</p>
<form action="{{ url_for('consent') }}" method="post">
<button type="submit" class="button">I Agree</button>
</form>
</div>
<p style="text-align: center; margin-top: 20px;">Your participation helps create future AI systems that can explain themselves to humans. <strong>Thank you for your contribution!</strong></p>
</body>
</html>