-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
88 lines (68 loc) · 5.59 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>QA Labeler</title>
<link rel="icon" type="image/x-icon" href="css/Designer.png">
<link rel="stylesheet" href="css/styles.css">
</head>
<body>
<div>
<h1 id="header">QA Labeler</h1>
</div>
<div class="container">
<h2>Login</h2>
<form id="loginForm">
<label for="name">Name:</label>
<input type="text" id="name" name="name" required>
<label for="id">Registration ID (numerical):</label>
<input type="number" id="reg" name="reg" required>
<label for="email">Email:</label>
<input type="email" id="email" name="email" required>
<label for="phone">Phone Number (10 digit):</label>
<input type="tel" id="phone" name="phone" pattern="[0-9]{10}" required>
<div style="display: flex; align-items: center; justify-content: center">
<input type="checkbox" id="consentCheckbox">
<label for="consentCheckbox" id="consentLabel">I agree to the <span id="consentHighlight" style="cursor: pointer; color: blue;">consent form</span></label>
</div>
<button type="submit" id="login">Submit</button>
</form>
</div>
<div id="consentPopup" style="display: none; position: fixed; top: 50%; left: 50%; transform: translate(-50%, -50%); padding: 20px; border: 1px solid #ccc; background-color: #fff; z-index: 1000; max-width: 400px; max-height: 80vh; overflow-y: auto;">
<p>This is the consent text. Please read it carefully.
By clicking the "Submit" button, you are agreeing to the following: </p>
<p><strong>Title of Research Project:</strong> Advancing Personality Trait Identification: An Audio-Visual Multimodal Fusion Deep Learning Framework for Recommending Potential Employees Recruitment at Manipal Group of Institutions</p>
<p><strong>Research Institutions:</strong> Manipal Group of Institutions</p>
<p><strong>Introduction:</strong><br>
This consent form outlines the terms and conditions regarding viewing the videos of research project mentioned above. Please read this form carefully. By proceeding forward, you are agreeing to the following conditions.</p>
<ol>
<li><strong>Purpose of the Research:</strong><br>
The purpose of this research project is to create an AI tool for academic and research purposes. The videos presented and scores given will be used to develop and train artificial intelligence (AI) models for projects such as, but not limited to, Personality Trait Identification, facial recognition, emotion detection, etc.</li>
<li><strong>Description of Participation:</strong><br>
You are being asked to provide your consent for participation. You are acknowledging that you will maintain the privacy and security of the videos as they contain peoples face and actions. You will not share or download any of the videos shown during the process and agree to legal charges if found guilty. These videos are recorded during research sessions and provided voluntarily. Your participation is voluntary, and you have the right to not proceed forward if you disagree.</li>
<li><strong>Use of scores:</strong><br>
Your scores given will be used solely for academic and research purposes. They may be included in a dataset that will be made publicly available for research purposes, including but not limited to publication, presentations, and development of AI models.</li>
<li><strong>Risks and Benefits:</strong><br>
Effort are made to ensure the security and privacy of the data, there may be potential risks associated with the use of AI technology, such as misuse of the dataset. However, the potential benefits of this research include advancing scientific knowledge, contributing to the development of AI technology, and potential societal applications in areas such as healthcare, security, and education.</li>
<li><strong>Compensation:</strong><br>
You will not receive any financial compensation for participating in this research project. Your participation is voluntary and motivated by your interest in contributing to scientific advancement.</li>
<li><strong>Contact Information:</strong><br>
If you have any questions or concerns about this research project or your participation, please contact the Principal Investigator at the following address:</li>
<li><strong>Subject to changes:</strong><br>
The terms and conditions outlined in this consent form are subject to change. Though you may be notified of any changes, your consent will be not be sought again, unless necessary.</li>
</ol>
<p>Dr. Amit Kumar Gupta<br>
+91-7014402055</p>
<p><strong>Consent:</strong><br>
I have read and understood the information provided in this consent form. I voluntarily consent to the participation and maintaining the privacy and security of the videos.</p>
</p>
<button id="closeConsent" style="margin: 10px auto; display: block;">I agree</button>
</div>
<div class="copyright-container">
<p>© 2024 MRB Research Project. All rights reserved.</p>
<p>By using the platform, you are voluntarily agreeing to the consent form for research work.</p>
</div>
<script src="js/scripts.js"></script>
</body>
</html>