-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
36 lines (35 loc) · 1.27 KB
/
index.html
File metadata and controls
36 lines (35 loc) · 1.27 KB
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
<!DOCTYPE html>
<html>
<head>
<title>TEST</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<script type = "text/javascript" src="index.js"></script>
<link href="style.css" rel="stylesheet">
</head>
<body>
<div class="main-wrapper">
<header>
<h1 class="title">Auto</h1>
<div class="search-controller">
<label for="search-id">Enter an ID: </label>
<input type="number" id="search-id" name="search-id" min="1" max="100" />
<button class="search-button">Search Demand</button>
</div>
<span class="search-message"></span>
</header>
<content class="demand-container">
<table class="table-content">
<thead class="table-head">
<tr>
<th>Id</th>
<th>Firstname</th>
<th>lastname</th>
<th>Immat</th>
</tr>
</thead>
<tbody class="table-body"></tbody>
</table>
</content>
</div>
</body>
</html>