-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patheditData.html
90 lines (79 loc) · 3.15 KB
/
editData.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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE-edge">
<title>اضافةٌ أو تعديلٌ</title>
<link rel="icon" href="images/myNewLetter.png">
<link href="https://fonts.googleapis.com/css?family=Dosis:300,400,700" rel="stylesheet" />
<link rel="stylesheet" href="css/all.min.css" />
<link rel="stylesheet" href="css/fontawesome.min.css" />
<link rel="stylesheet" href="css/bootstrap.min.css" />
<link rel="stylesheet" href="css/bootstrap-toggle.min.css" />
<link rel="stylesheet" href="css/jqeury-confirm.css" />
<link rel="stylesheet" type="text/css" href="css/editDataStyle.css">
<!--[if lt IE 9]>
<script src="js/html5shiv.js"></script>
<![endif]-->
</head>
<body>
<table class="content-table" id="myTable">
<thead>
<tr>
<th>حذفُ</th>
<th>اضافةُ تحويل ماكينة</th>
<th>اضافةُ تحويل هاتف</th>
<th>الاسم</th>
</tr>
</thead>
<tbody>
<tr>
<td title="حذفُ الاسم">
<label class="container">
<input type="checkbox" class="myDeleteButton">
<span class="checkmark"></span>
</label>
</td>
<form method="post" name="myForm" action="" tabindex="2">
<td>
<input type="text" name="p_machine" id="input1" class="addPriceMachine" placeholder="اضِفْ تحويل ماكينة" tabindex="3">
</td>
<td>
<input type="text" name="p_phone" id="input2" class="addPricePhone" placeholder="اضِفْ تحويل هاتف" tabindex="4">
</td>
</form>
<td>
<p tabindex="1">خالد محمد محمود</p>
</td>
</tr>
<tr>
<td title="حذفُ الاسم">
<label class="container">
<input type="checkbox" class="myDeleteButton">
<span class="checkmark"></span>
</label>
</td>
<td>
<input type="text" class="addPriceMachine" placeholder="اضِفْ تحويل ماكينة" tabindex="3">
</td>
<td>
<input type="text" class="addPricePhone" placeholder="اضِفْ تحويل هاتف" tabindex="2">
</td>
<td>
<p tabindex="1">عبد السميع ابراهيم</p>
</td>
</tr>
</tbody>
</table>
<script src="js/jquery-3.4.1.min.js "></script>
<script src="js/bootstrap.min.js"></script>
<script src="js/bootstrap-toggle.min.js"></script>
<script src="js/jquery-confirm.js"></script>
<script src="js/custom-editData-js.js"></script>
<script>
function myFun() {
window.location.href = "login.html";
}
</script>
</body>
</html>