CoolFace
Apppublic

flyingff2083/parallel_self

sourceHugging Facemitupdated 11mo agoView on Hugging Face
0likes
consent.html90 linesDownload Raw Back to frontend
1<!DOCTYPE html>2<html lang="en">3<head>4    <meta charset="UTF-8">5    <meta name="viewport" content="width=device-width, initial-scale=1.0">6    <title>Informed Consent - Para</title>7    <link rel="stylesheet" href="css/style.css">8</head>9<body class="consent-page">10    <div class="container">11        <!-- Ethics Warning Banner -->12        <div class="ethics-banner">13            ⚠️ ETHICS_CHECK_REQUIRED - Research Purpose14        </div>15        16        <div class="consent-box">17            <h1>Informed Consent</h1>18            <h2>Parallel-Self Protocol</h2>19            20            <div class="consent-content">21                <p>Welcome to the <strong>Parallel-Self Protocol</strong> experience</p>22 23                <h3>🪞 Participation Instructions</h3>24                <ul>25                <li>✓ This work is an <strong>interactive art experience</strong>, not scientific research.</li>26                <li>✓ You can <strong>exit at any time</strong> by clicking the "Exit" button in the upper right corner.</li>27                <li>✓ All images and data are used only for artistic display and will be <strong>anonymized</strong>.</li>28                <li>✓ Data retention period: <strong>30 days</strong>, after which it will be automatically deleted.</li>29                <li>✓ If you feel uncomfortable during the experience, please exit immediately and rest.</li>30                </ul>31                32                33                <h3>📋 Experiment Content</h3>34                <p>This experiment will:</p>35                <ul>36                    <li>Record your emotional response data</li>37                    <li>Guide you through a series of interactive tasks</li>38                    <li>Take approximately 3-6 minutes to complete</li>39                </ul>40                41                <h3>🛡️ Your Rights</h3>42                <ul>43                    <li>✓ Exit the experiment at any time</li>44                    <li>✓ Refuse to answer any questions</li>45                    <li>✓ Request human support</li>46                </ul>47                48                <h3>⚠️ Potential Risks</h3>49                <p>This experiment may trigger the following emotional responses:</p>50                <ul>51                    <li>Mild discomfort or embarrassment</li>52                    <li>Heightened self-awareness</li>53                    <li>Emotional fluctuations</li>54                </ul>55                <p><strong>If you feel uncomfortable, please click the "Exit" button immediately.</strong></p>56                57                <h3>🔒 Privacy Protection</h3>58                <ul>59                    <li>No video or audio recording (unless separately agreed)</li>60                </ul>61                62                <div class="consent-declaration">63                    <p><strong>I have read and understand the above information:</strong></p>64                    <ul>65                        <li>✓ I understand this is an experimental study</li>66                        <li>✓ I understand the possible risks and discomfort</li>67                        <li>✓ I know I can exit at any time</li>68                        <li>✓ I know how to get support</li>69                        <li>✓ I voluntarily participate in this study</li>70                    </ul>71                </div>72            </div>73            74            <div class="consent-actions">75                <button id="decline-btn" class="btn btn-secondary">Decline</button>76                <button id="agree-btn" class="btn btn-primary">Agree and Continue</button>77            </div>78            79            <div class="footer-note">80                <p>Clicking "Agree and Continue" indicates that you have read, understood, and voluntarily participate in this study.</p>81                <p>Current mode: <span id="mode-display">Gentle</span></p>82            </div>83        </div>84    </div>85    86    <script src="js/config.js"></script>87    <script src="js/consent.js"></script>88</body>89</html>90