-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcopy.php
More file actions
executable file
·52 lines (50 loc) · 2.28 KB
/
copy.php
File metadata and controls
executable file
·52 lines (50 loc) · 2.28 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
<div class="col-sm-12 col-xl-6">
<div class="bg-light rounded h-100 p-4">
<h6 class="mb-4">עריכת לקוח</h6>
<form>
<div class="form-floating mb-3">
<input type="email" class="form-control" id="" placeholder="">
<label for="">שם מלא</label>
</div>
<div class="form-floating mb-3">
<input type="text" class="form-control" id="" placeholder="">
<label for="">כתובת</label>
</div>
<div class="form-floating mb-3">
<input type="text" class="form-control" id="" placeholder="">
<label for="">ת"ז/ח.פ</label>
</div>
<div class="form-floating mb-3">
<select class="form-select" id="floatingSelect" aria-label="Floating label select example">
<option selected>בחר/י</option>
<option value="1">זכר</option>
<option value="2">נקבה</option>
</select>
<label for="floatingSelect">מין</label>
</div>
<div class="form-floating mb-3">
<input type="text" class="form-control" id="" placeholder="">
<label for="">מס' טלפון</label>
</div>
<div class="form-floating mb-3">
<input type="text" class="form-control" id="" placeholder="">
<label for="">מס' טלפון נוסף</label>
</div>
<div class="form-floating mb-3">
<input type="text" class="form-control" id="" placeholder="">
<label for="">אימייל</label>
</div>
<button type="submit" class="btn btn-primary">עדכון</button>
<button type="submit" class="btn btn-primary">מחיקה</button>
</form>
</div>
</div>
<div class="form-floating mb-3">
<select class="form-select" name="job" id="job" aria-label="Floating label select example">
<option id="job" selected>בחר/י</option>
<option value="מנהל">מנהל</option>
<option value="עובד">עובד</option>
<option value="מזכירה">מזכירה</option>
</select>
<label for="job">תפקיד</label>
</div>