-
Notifications
You must be signed in to change notification settings - Fork 43
Expand file tree
/
Copy pathIndex.html
More file actions
28 lines (26 loc) · 990 Bytes
/
Index.html
File metadata and controls
28 lines (26 loc) · 990 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Legal AI App</title>
</head>
<body>
<h1>Legal AI App</h1>
<form action="/research" method="post">
<label for="query">Legal Research Query:</label>
<input type="text" id="query" name="query" required>
<button type="submit">Search</button>
</form>
<form action="/case_prediction" method="post">
<label for="case_details">Case Details:</label>
<input type="text" id="case_details" name="case_details" required>
<button type="submit">Predict Case Outcome</button>
</form>
<form action="/contract_review" method="post">
<label for="contract_text">Contract Text:</label>
<textarea id="contract_text" name="contract_text" required></textarea>
<button type="submit">Review Contract</button>
</form>
</body>
</html>