-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstorseal.php
98 lines (71 loc) · 4.51 KB
/
storseal.php
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
91
92
93
94
95
96
97
98
<?php require 'ini/confg.php';?>
<?php require 'topheader.php';?>
<?php require 'headernav.php';?>
<?php
if($_SESSION['is_admin'] == 3 or $_SESSION['addstor']){ ?>
<!-- Advanced Validation -->
<div class="contanier-fluid" dir="rtl">
<div class="row clearfix">
<div class="col-md-3"></div>
<div class="col-md-6 col-sm-12 col-xs-12">
<div class="card " style="direction: rtl ;height:465px;margin-top:90px">
<div class="header text-danger">
<h2 class="text-center">اضافه فاتوره شراء</h2>
</div>
<div class="body" style="height:280px">
<form id="form_advanced_validation1" class="storseal" method="POST" >
<div class="input-group date" id="bs_datepicker_component_container">
<div class="form-line">
<input type="text" name="date" class="form-control" placeholder="ادخل التاريخ" autocomplete="off">
</div>
<span class="input-group-addon">
<i class="material-icons">date_range</i>
</span>
</div>
<div class="form-group form-float">
<div class="form-line">
<input type="text" class="form-control" name="prodect" >
<label class="form-label">اسم المنتج</label>
</div>
</div>
<div class="form-group form-float">
<div class="form-line">
<input type="number" class="form-control count" placeholder="العدد" name="count" >
<label class="form-label">العدد</label>
</div>
<div class="help-info">ارقام فقط</div>
</div>
<div class="form-group form-float">
<div class="form-line">
<input type="text" class="form-control price" placeholder="السعر" name="price" >
<label class="form-label">السعر</label>
</div>
</div>
<div class="form-group form-float">
<div class="form-line">
<input type="text" class="form-control total" name="total" >
<label class="form-label">الاجمالى</label>
</div>
</div>
<div class="form-group" id="msg99"></div>
<div class="form-group col-md-4" style="float: right">
<button class="btn btn-primary waves-effect btn1" style="width: 240px;
margin-right: 70px;
margin-top: 39px;
margin-top: 39px;"type="submit">اضافه</button>
</div>
</form>
</div>
</div>
</div>
<div class="col-md-4"></div>
</div>
</div>
</div>
<!-- #END# Advanced Validation -->
<?php } else {
header("Location:error404.php");
exit();
}
?>
<?php require 'lassfooter.php'; ?>