-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
33 lines (29 loc) · 1 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Legal Research Assistant</title>
<link rel="stylesheet" href="styles.css">
<script src="https://cdn.jsdelivr.net/npm/axios/dist/axios.min.js"></script>
</head>
<body>
<header>
<h1>Legal Research Assistant</h1>
<input type="text" id="searchInput" placeholder="Enter your legal query">
<button id="searchButton">Search</button>
<div class="country-select">
<label for="country">Select Country:</label>
<select id="country">
<option value="canada">Canada</option>
<option value="usa">USA</option>
</select>
</div>
</header>
<main id="resultsContainer">
<div id="loadingMessage" style="display: none;">Loading...</div>
<!-- Search results will be displayed here -->
</main>
<script src="main.js"></script>
</body>
</html>