-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathform2.php
More file actions
61 lines (58 loc) · 2.7 KB
/
Copy pathform2.php
File metadata and controls
61 lines (58 loc) · 2.7 KB
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
<?php
echo '<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH" crossorigin="anonymous">';
?>
<html dir="rtl">
<div class="container mt-5">
<form action="get_data.php" method="POST">
<div class="form-group">
<label for="exampleInputEmail1">نام و نام خانوادگی</label>
<br><br>
<input type="text" name="name" class="form-control">
</div>
<br>
<div class="form-group">
<label for="exampleInputPassword1">شماره همراه</label>
<br><br>
<input type="number" name="phone" class="form-control">
</div>
<br>
<div class="form-group">
<label for="exampleInputPassword1">نام کالایی که قصد مرجوع نمودن آن را دارید ، عنوان نمایید.</label>
<br><br>
<input type="text" name="title" class="form-control">
</div>
<br>
<div class="form-group">
<label for="exampleInputPassword1">علت مرجوعی کالا را شرح دهید.</label>
<br><br>
<textarea name="msgbody" cols="70" rows="7"></textarea>
</div>
<br>
<div class="form-group">
<label for="exampleInputPassword1">تاریخ دریافت کالا</label>
<br><br>
<input type="date" name="date" class="form-control">
</div>
<br><br>
<div class="form-group">
<label for="exampleInputPassword1">شماره کارت</label>
<br><br>
<input type="number" name="cart" class="form-control">
</div>
<br><br>
<div class="form-group">
<label for="exampleInputPassword1">در صورت لزوم تصویر یا فیلم از ایراد کالا ضمیمه نمایید(ارسال تصویر یا فیلم میتواند به روند کارشناسی سرعت بخشد)</label>
<br><br>
<input type="file" name="imgone" class="form-control">
</div>
<br><br>
<div class="form-group">
<label for="exampleInputPassword1">لطفا در صورتی که کالا را پست نموده اید ، یک تصویر از رسید پستی ارسال فرمایید.</label>
<br><br>
<input type="file" name="imgtwo" class="form-control">
</div>
<br><br>
<input type="submit" name="formsubmit" value="ارسال فرم">
</form>
</div>
</html>