-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
63 lines (57 loc) · 1.48 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 lang="tr">
<head>
<title>JavaScript</title>
<script src="node_modules/traceur/bin/traceur.js"></script>
<script src="node_modules/es6-module-loader/dist/es6-module-loader-dev.js"></script>
<link rel="stylesheet" href="./assets/style.css">
<style>
</style>
</head>
<body>
<div class="contanier">
<div class="justify-content-center">
<div class="priceArea justify-content-center">
<h3>Ürünler</h3>
<table class="table">
<thead>
<td class="id">
#
</td>
<td>
Ürün
</td>
<td>
Adet
</td>
<td>
Değer
</td>
<td>
işlem
</td>
</thead>
<tbody id="list">
</tbody>
</table>
<h3>Ürün Ekle</h3>
<form action="javascript:void(0)" method="post" id="ekle">
<label for="id">İd</label>
<input type="text" class="data">
<label for="urun">Ürün</label>
<input type="text" class="data">
<label for="adet">Adet</label>
<input type="text" class="data">
<label for="deger">Değer</label>
<input type="text" class="data">
<button type="submit">
Ekle
</button>
</form>
</div>
</div>
</div>
<script>
System.import('src/components/homeComponent.js');
</script>
</body>
</html>