File size: 1,615 Bytes
17892ce
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8" />
  <meta name="viewport" content="width=device-width, initial-scale=1.0" />
  <title>Thank You!</title>
  <style>
    body {
      font-family: Arial, sans-serif;
      text-align: center;
      background: #f8f9fa;
      padding: 50px;
    }
    .container {
      background: #fff;
      border-radius: 12px;
      max-width: 500px;
      margin: 100px auto;
      padding: 30px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }
    h1 {
      color: #2c3e50;
    }
    p {
      font-size: 18px;
      color: #444;
      margin: 20px 0;
    }
    .btn {
      display: inline-block;
      padding: 12px 24px;
      font-size: 16px;
      font-weight: bold;
      color: white;
      background-color: #007bff;
      border: none;
      border-radius: 8px;
      cursor: pointer;
      text-decoration: none;
      transition: background-color 0.3s ease;
    }
    .btn:hover {
      background-color: #0056b3;
    }
    .exit-note {
      font-size: 14px;
      color: #666;
      margin-top: 20px;
    }
  </style>
</head>
<body>
  <div class="container">
    <h1>Thank You!</h1>
    <p>You have completed the experiment successfully.</p>
    <p>Please help us by taking the post study survey using the hyper link provided below(only takes 2 more minutes) </p>
    <a href="https://docs.google.com/forms/d/e/1FAIpQLSck53vaRMMP0z8tUxZh5mkp-OtSs48cqeO1oij_Dyl9xtPzbg/viewform?usp=dialog">Click This To Take The Survey!</a>
    <div class="exit-note">
      (Please do not go back and redo the experiment)
    </div>
  </div>
</body>
</html>