-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathbox_view_accounts.html
executable file
·45 lines (39 loc) · 1.24 KB
/
box_view_accounts.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
<div class="row">
<div class="large-12 columns">
<h4>{name} - إضافة حساب</h4>
<form action="family_box.php?action=add_account&subscriber_id={subscriber_id}" method="post">
<div class="row">
<div class="large-6 columns">
<label>رقم الحساب</label>
<input type="text" name="account_number" />
</div>
</div>
<div class="row">
<div class="large-6 columns">
<label>البنك</label>
{banks}
</div>
</div>
<div class="row">
<div class="large-4 columns">
<button class="small button" type="submit" name="submit" value="1">إضافة حساب</button>
<a href="family_box.php?action=view_subscribers" class="small button secondary">عرض المشتركين</a>
</div>
</div>
</form>
<h4>عرض الحسابات</h4>
<table class="table" width="100%">
<thead>
<tr>
<th>رقم الآيبان (IBAN)</th>
<th>الاستقطاعات</th>
<th>الرصيد</th>
<th>الإجراء</th>
</tr>
</thead>
<tbody>
{accounts}
</tbody>
</table>
</div>
</div>