-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
61 lines (60 loc) · 2.08 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
<!DOCTYPE html>
<html lang="ru">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>x-mmd-vantage</title>
<link rel="stylesheet" href="bower_components/bootstrap/dist/css/bootstrap.min.css">
<link rel="stylesheet" href="build/common.min.css">
<script src="bower_components/angular/angular.js" type=text/javascript></script>
<script src="bower_components/angular-route/angular-route.js" type=text/javascript></script>
<script src="build/common.min.js" type=text/javascript></script>
</head>
<body>
<header class="navbar navbar-inverse">
<div class="container">
<div class="navbar-brand">Калькулятор портфеля ценных бумаг</div>
</div>
</header>
<section class="container">
<div class="row">
<div class="col-xs-12">
<form action="#" role="form" class="form-inline">
<input type="text" class="form-control" placeholder="Наименование акции">
<input type="text" class="form-control" placeholder="Цена покупки">
<input type="text" class="form-control" placeholder="Количество">
<input type="button" class="btn btn-default" name="name" value="Добавить">
</form>
</div>
</div>
<div class="row">
<div class="col-xs-12">
<a href="#" class="btn btn-primary">Все</a>
<a href="#" class="btn btn-link">Доходные</a>
<a href="#" class="btn btn-link">Убыточные</a>
<a href="#" class="btn btn-link">Сводка</a>
</div>
</div>
<table class="table">
<tr>
<th>
Наименование
</th>
<th>
Средняя цена
</th>
<th>
Количество
</th>
<th>
Тек. цена
</th>
<th>
Доход/убыток
</th>
</tr>
</table>
</section>
</body>
</html>