-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
43 lines (35 loc) · 1.32 KB
/
index.html
File metadata and controls
43 lines (35 loc) · 1.32 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
37
38
39
40
41
42
43
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.5/css/bootstrap.min.css">
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<div class="container">
<div>
<h4>Продукты</h4>
<p>Нажмите на продукт, чтобы увидеть доступные рецепты</p>
<div id="availableProduct" class="container border"></div>
<input type="text" class="form-inline" id="addProduct" value="Название">
<button id="addButton" class="btn btn-default">Добавить</button>
</div>
<div>
<h4>Доступные рецепты</h4>
<p>Нажмите на рецепт, чтобы подсветить нужные продукты</p>
<div id="availableRecipe" class="container border"></div>
<p id="recipeLog"></p>
</div>
<div>
<h4>Крафтинг</h4>
<p>Перетащите выбранные продукты для крафта</p>
<div id="craftItems" class="container border" ></div>
<p id="craftLog"></p>
<button class="btn btn-default" id="craft">Крафт</button>
</div>
</div>
<script src="scripts/Models.js"></script>
<script src="scripts/script.js"></script>
</body>
</html>