-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
executable file
·62 lines (53 loc) · 2.2 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
59
60
61
62
<html>
<head>
<title>Angular 2Do</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="app/css/bootstrap.css">
<link rel="stylesheet" href="app/css/index.css">
<!-- Polyfill(s) for older browsers -->
<script src="node_modules/core-js/client/shim.min.js"></script>
<script src="node_modules/zone.js/dist/zone.js"></script>
<script src="node_modules/reflect-metadata/Reflect.js"></script>
<script src="node_modules/systemjs/dist/system.src.js"></script>
<script src="systemjs.config.js"></script>
<script>
System.import('app').catch(function(err){ console.error(err); });
</script>
</head>
<body>
<div class="container-fluid" style="margin-top: 40px;">
<div class="row">
<div class="well span6">
<legend>Ввод данных</legend>
<input class="width" type="text" placeholder="Введите ширину">
<input class="height" type="text" placeholder="Введите высоту">
<input class="number_neural" type="text" placeholder="Введите кол-во нейронов">
<input class="error" type="text" placeholder="Введите ошибку">
<input class="alpha_X" type="text" placeholder="Введите alphaX">
<input class="alpha_Y" type="text" placeholder="Введите alphaY">
<button class="send start btn btn-block btn-error" type="submit" name="submit">Запуск</button>
</div>
<div class="well span6 console">
<legend>Консоль</legend>
<div class="console_content">
</div>
</div>
</div>
<div class="row">
<div class="well span6 source_img">
<legend>Исходная картинка</legend>
<div class="dropZone">
<img src="app/images/losyash_256x256.bmp">
</div>
</div>
<div class="well span6 ready_mg">
<legend>Готовая картинка</legend>
<div class="dropZone">
<canvas class="canvas"></canvas>
</div>
</div>
</div>
</div>
</body>
</html>