-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
58 lines (57 loc) · 1.59 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
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
<!DOCTYPE html>
<html lang="ru">
<head>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.7.1/jquery.min.js"></script>
<script type="text/javascript" src="js\carlcare.js"></script>
<link rel="stylesheet" href="styles\fonts.css">
<link rel="stylesheet" href="styles\simple-grid.css">
<link rel="stylesheet" href="styles\style.css">
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title></title>
</head>
<body>
<header>
<div class="container">
<div class="row">
<div class="col-12">
<span class="header-title">Проверка гарантии Infinix, Itel, Tecno</span>
</div>
</div>
</div>
</header>
<main>
<div class="container">
<div class="row">
<div class="col-3">
<div class="warranty-check-form">
<textarea id="warranty-check-textarea"></textarea>
<button id="warranty-check-button">Проверить</button>
</div>
</div>
<div class="col-9">
<div class="warranty-check-result-table">
<table>
<thead>
<tr>
<th class="imei">IMEI</th>
<th class="status">Статус гарантии</th>
<th class="active-date">Дата активации</th>
<th class="warranty-date">Гарантия до</th>
</tr>
</thead>
<tbody id="warranty-result">
</tbody>
</table>
</div>
</div>
</div>
</div>
</main>
<footer>
</footer>
<div id="display-blocker">
<span>Идёт обработка...</span>
</div>
</body>
</html>