File size: 2,300 Bytes
c36282c
 
 
 
 
8ebe5b2
2c56160
 
 
ddb88a9
 
 
c36282c
0b95a34
2f001b1
 
67ab45e
ed7c90d
 
 
2f001b1
50e74dc
6984a4f
 
 
1fbb4e3
 
a06f59d
c36282c
a06f59d
 
 
 
6984a4f
a06f59d
a07df95
a06f59d
 
 
c36282c
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
<!doctype html>
<html>
	<head>
		<meta charset="utf-8" />
		<meta name="viewport" content="width=device-width" />
		<title> Legal Retrieval Study </title>
        <!-- Bootstrap -->
        <link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH" crossorigin="anonymous">
        <script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-YvpcrYf0tY3lHB60NNkmXc5s9fDVZLESaAA55NDzOxhy9GkcIdslK1eN7N6jIeHz" crossorigin="anonymous"></script>
    	<!-- Normal CSS -->
        <link rel="stylesheet" href="style.css" />
    </head>
	<body>
    	<h1 style="font-weight: bold;"> &#128269; Legal Retriever Evaluation Study </h1>
        <hr />
    	<p> We really appreciate your participation in our study, which will help us better understand how to best evaluate and use legal retrieval models. </p>
		<ul class="repeating-counter-rule">
          <li> You'll be asked to answer a number of Multistate Bar Exam questions using your knowledge. </li>
          <li> After answering each question, we'll show you passages from case law that a legal model retrieved, as well as an auto-generated summary of that information. You'll evaluate how helpful these responses are in arriving at and understanding the correct answer. </li>
          <li> You don't need to answer every question in the same session. Feel free to start and stop when convenient! </li>
        </ul>
        <p> Use the <strong>same email</strong> each time to save your progress. Thanks again for participating! </p>
        <div class="alert alert-danger" role="alert" id="email warning" style="display: none;">
          Provide an email, please!
        </div>
        <input type="text" id="email" placeholder="Email"/>
        <br /> <br />
        <button id="submit" onclick="launch();"><strong>Let's go!</strong></button>
	</body>
    <script>
      function launch() {
        var email = document.getElementById("email").value;
        if (email == "") {
          document.getElementById("email warning").style.display = "block";
        } else {
          window.location.href = "study.html?id=" + email;
        }
      }
    </script>
</html>