-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtemplate.html
More file actions
165 lines (145 loc) · 4.5 KB
/
Copy pathtemplate.html
File metadata and controls
165 lines (145 loc) · 4.5 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
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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
<link href="https://fonts.googleapis.com/css2?family=Tajawal:wght@200;300;400;500;700;800;900&display=swap" rel="stylesheet">
<div class="invitation-layout">
<div class="invitation-header">
<div class="header-right">
المملكة المغربية<br>
وزارة الداخلــــــــــــــية<br>
اقليم تطـــــــــــــــــوان<br>
باشوية واد لــــــــــــو
</div>
<div class="header-center">
<h1>دعوة استلام قفة رمضان</h1>
</div>
</div>
<div class="invitation-body">
<div class="intro-recipient-row">
<p class="recipient-line">إلى السيد(ة): <strong>{{name}}</strong></p>
<p class="recipient-line">الرقم الترتيبي: <strong>{{order_no}}</strong></p>
</div>
<div class="details-section">
<div class="details-grid">
<div class="detail-row">
<span class="label">رقم البطاقة الوطنية:</span>
<span class="value">{{cin}}</span>
</div>
<div class="detail-row">
<span class="label">المعرف الرقمي المدني و الاجتماعي:</span>
<span class="value">{{idcs}}</span>
</div>
<div class="detail-row">
<span class="label">تاريخ الازدياد:</span>
<span class="value">{{birth}}</span>
</div>
<div class="detail-row">
<span class="label">العنوان:</span>
<span class="value">{{adress}}</span>
</div>
<div class="signature-line"></div>
<div class="detail-row" style="margin-top: 2mm;">
<span class="label">عليكم الحضور لدار الطالبة واد لو، يوم الإثنين 23 فبراير 2026 على الساعة الحادية عشرة صباحا، لاستلام قفة رمضان الخاصة بكم</span>
</div>
</div>
<div class="signature-box">
<p>التوقيع أوالختم</p>
</div>
</div>
</div>
</div>
<style>
@font-face {
font-family: 'Maghribi';
src: url('/fonts/Samir.Khouaja.Maghribi.ttf') format('truetype');
font-weight: normal;
font-style: normal;
}
.invitation-layout {
font-family: 'Tajawal', sans-serif;
font-weight: 400;
padding: 2mm;
height: 100%;
display: flex;
flex-direction: column;
box-sizing: border-box;
}
.invitation-header {
display: flex;
border-bottom: 1px solid #000;
padding-bottom: 2mm;
margin-bottom: 2mm;
}
.header-right {
width: 35mm;
text-align: right;
font-size: 10pt;
line-height: 1.3;
}
.header-center {
flex-grow: 1;
display: flex;
align-items: center;
justify-content: center;
}
.header-center h1 {
font-family: 'Maghribi', serif;
font-size: 20pt;
font-weight: 700;
margin: 0;
}
.invitation-body {
flex-grow: 1;
display: flex;
flex-direction: column;
}
.intro-recipient-row {
display: flex;
justify-content: space-between;
margin-bottom: 3mm;
border-bottom: 1px dashed #ccc;
padding-bottom: 2mm;
}
.recipient-line {
font-size: 13pt;
margin: 0;
}
.details-section {
display: flex;
flex-grow: 1;
gap: 3mm;
}
.details-grid {
width: 70%;
display: flex;
flex-direction: column;
}
.detail-row {
display: flex;
font-size: 11pt;
align-items: flex-start;
margin-bottom: 1mm;
}
.detail-row .label {
font-weight: 500;
color: #444;
margin-left: 5px;
}
.detail-row .value {
color: #000;
}
.signature-box {
width: 30%;
border: 1px solid #000;
display: flex;
flex-direction: column;
align-items: center;
justify-content: flex-start;
padding-top: 1mm;
}
.signature-box p {
font-weight: bold;
}
.signature-line {
margin-top: 5mm;
border-bottom: 1px solid #000;
width: 80%;
}
</style>