@7365admin1/layer-common 3.0.2 → 3.0.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +20 -0
- package/components/DashboardMain.vue +5 -3
- package/components/Facility/BookingSetup.vue +36 -12
- package/components/InvitationForm.vue +6 -2
- package/components/OnlineFormConfigurationForm.vue +141 -239
- package/components/OnlineFormFill.vue +456 -0
- package/components/OnlineFormsConfiguration.vue +81 -126
- package/components/RolePermissionFormCreate.vue +5 -1
- package/components/SignaturePad.vue +132 -61
- package/components/VisitorDataFromScannedQRCodeForm.vue +20 -8
- package/composables/useFacility.ts +0 -9
- package/composables/useMember.ts +13 -1
- package/composables/useOnlineFormPages.ts +642 -0
- package/package.json +1 -1
- package/types/facility.d.ts +0 -3
- package/types/visitor.d.ts +8 -2
|
@@ -0,0 +1,642 @@
|
|
|
1
|
+
export type FormFieldDef = {
|
|
2
|
+
key: string;
|
|
3
|
+
label: string;
|
|
4
|
+
fieldType: "text" | "date" | "textarea" | "select" | "number";
|
|
5
|
+
required?: boolean;
|
|
6
|
+
options?: string[];
|
|
7
|
+
cols?: number; // Vuetify grid cols 1-12, default 6
|
|
8
|
+
};
|
|
9
|
+
|
|
10
|
+
export type CheckboxItemDef = {
|
|
11
|
+
key: string;
|
|
12
|
+
label: string;
|
|
13
|
+
elaborateKey?: string; // shows a text input inline when this checkbox is checked
|
|
14
|
+
};
|
|
15
|
+
|
|
16
|
+
export type FormBlock =
|
|
17
|
+
| { type: "address"; to: string }
|
|
18
|
+
| { type: "row"; fields: FormFieldDef[] }
|
|
19
|
+
| { type: "field"; field: FormFieldDef }
|
|
20
|
+
| { type: "checkbox-group"; title?: string; items: CheckboxItemDef[] }
|
|
21
|
+
| { type: "paragraph"; text: string }
|
|
22
|
+
| { type: "section-header"; text: string }
|
|
23
|
+
| { type: "divider" }
|
|
24
|
+
| { type: "signature-row"; label: string; key: string }
|
|
25
|
+
| { type: "acknowledgement"; text: string }
|
|
26
|
+
| { type: "management-use"; items: string[] };
|
|
27
|
+
|
|
28
|
+
export type FormDefinition = {
|
|
29
|
+
title: string;
|
|
30
|
+
blocks: FormBlock[];
|
|
31
|
+
};
|
|
32
|
+
|
|
33
|
+
const formPages: Record<string, FormDefinition> = {
|
|
34
|
+
"Update of Mailing Address": {
|
|
35
|
+
title: "UPDATE OF MAILING ADDRESS",
|
|
36
|
+
blocks: [
|
|
37
|
+
{ type: "address", to: "{siteName}" },
|
|
38
|
+
{ type: "paragraph", text: "Dear Sir / Madam," },
|
|
39
|
+
{ type: "row", fields: [
|
|
40
|
+
{ key: "unitNo", label: "Unit No. #", fieldType: "text", required: true, cols: 4 },
|
|
41
|
+
]},
|
|
42
|
+
{
|
|
43
|
+
type: "paragraph",
|
|
44
|
+
text: "I / We, subsidiary proprietor of the above unit at {siteName} would appreciate if you would re-direct all our letters from our old address to our new address under Section 65 (1) of the Building Maintenance and Strata Management Act.",
|
|
45
|
+
},
|
|
46
|
+
{ type: "section-header", text: "Old Address:" },
|
|
47
|
+
{ type: "field", field: { key: "oldAddress", label: "Street / Building Name", fieldType: "textarea", required: true } },
|
|
48
|
+
{ type: "row", fields: [
|
|
49
|
+
{ key: "oldPostalCode", label: "Singapore Postal Code", fieldType: "text", required: true, cols: 6 },
|
|
50
|
+
]},
|
|
51
|
+
{ type: "section-header", text: "New Address:" },
|
|
52
|
+
{ type: "field", field: { key: "newAddress", label: "Street / Building Name", fieldType: "textarea", required: true } },
|
|
53
|
+
{ type: "row", fields: [
|
|
54
|
+
{ key: "newPostalCode", label: "Singapore Postal Code", fieldType: "text", required: true, cols: 6 },
|
|
55
|
+
]},
|
|
56
|
+
{ type: "row", fields: [
|
|
57
|
+
{ key: "contactHP", label: "Contact No. (HP)", fieldType: "text", required: true, cols: 6 },
|
|
58
|
+
{ key: "contactOffice", label: "Contact No. (O)", fieldType: "text", cols: 6 },
|
|
59
|
+
]},
|
|
60
|
+
{ type: "field", field: { key: "email", label: "Email", fieldType: "text" } },
|
|
61
|
+
{
|
|
62
|
+
type: "paragraph",
|
|
63
|
+
text: "I / We agree to provide my personal information as indicated and understand that it is solely to be used for management purposes only. The personal data shall not be used for other purposes.",
|
|
64
|
+
},
|
|
65
|
+
{ type: "paragraph", text: "Yours faithfully," },
|
|
66
|
+
{ type: "field", field: { key: "proprietorName", label: "Subsidiary Proprietor's Name/s", fieldType: "text", required: true } },
|
|
67
|
+
{ type: "signature-row", label: "Signature/s", key: "signatureOwner" },
|
|
68
|
+
{ type: "divider" },
|
|
69
|
+
{ type: "section-header", text: "FOR MANAGEMENT USE:" },
|
|
70
|
+
{ type: "management-use", items: ["Updated By:", "Date:"] },
|
|
71
|
+
],
|
|
72
|
+
},
|
|
73
|
+
|
|
74
|
+
"Pet's Record Form": {
|
|
75
|
+
title: "PET'S RECORD FORM",
|
|
76
|
+
blocks: [
|
|
77
|
+
{ type: "address", to: "{siteName}" },
|
|
78
|
+
{ type: "section-header", text: "Details of Pet:" },
|
|
79
|
+
{ type: "field", field: { key: "petName", label: "Name of Pet/s", fieldType: "text", required: true } },
|
|
80
|
+
{
|
|
81
|
+
type: "checkbox-group",
|
|
82
|
+
title: "Type of Pet/s",
|
|
83
|
+
items: [
|
|
84
|
+
{ key: "petTypeDog", label: "Dog" },
|
|
85
|
+
{ key: "petTypeCat", label: "Cat" },
|
|
86
|
+
{ key: "petTypeOthers", label: "Others", elaborateKey: "petTypeOthersSpecify" },
|
|
87
|
+
],
|
|
88
|
+
},
|
|
89
|
+
{ type: "field", field: { key: "breed", label: "Breed (if applicable)", fieldType: "text" } },
|
|
90
|
+
{ type: "field", field: { key: "licenseNo", label: "License No. (if applicable)", fieldType: "text" } },
|
|
91
|
+
{ type: "section-header", text: "Owner's Particulars:" },
|
|
92
|
+
{ type: "field", field: { key: "ownerName", label: "Name", fieldType: "text", required: true } },
|
|
93
|
+
{ type: "row", fields: [
|
|
94
|
+
{ key: "unitNo", label: "Unit No. (Subsidiary Proprietor / Tenant)", fieldType: "text", required: true, cols: 8 },
|
|
95
|
+
]},
|
|
96
|
+
{ type: "row", fields: [
|
|
97
|
+
{ key: "contactHome", label: "Contact No. (H)", fieldType: "text", cols: 6 },
|
|
98
|
+
{ key: "contactHP", label: "Contact No. (HP)", fieldType: "text", required: true, cols: 6 },
|
|
99
|
+
]},
|
|
100
|
+
{ type: "field", field: { key: "contactOffice", label: "Contact No. (O)", fieldType: "text" } },
|
|
101
|
+
{ type: "field", field: { key: "email", label: "Email", fieldType: "text" } },
|
|
102
|
+
{ type: "field", field: { key: "correspondenceAddress", label: "Correspondence Address", fieldType: "textarea" } },
|
|
103
|
+
{
|
|
104
|
+
type: "paragraph",
|
|
105
|
+
text: "I / We agree to provide my personal information as indicated and understand that it is solely to be used by the Management for management purposes only. The personal data shall not be used for other purposes.",
|
|
106
|
+
},
|
|
107
|
+
{ type: "section-header", text: "Declaration from Subsidiary Proprietor / Tenant:" },
|
|
108
|
+
{
|
|
109
|
+
type: "paragraph",
|
|
110
|
+
text: "I declare that I am residing at {siteName} and that all the above particulars given by me are true and correct.",
|
|
111
|
+
},
|
|
112
|
+
{ type: "signature-row", label: "Signature", key: "signatureOwner" },
|
|
113
|
+
],
|
|
114
|
+
},
|
|
115
|
+
|
|
116
|
+
"Application for Renovation/Addition & Alteration Works": {
|
|
117
|
+
title: "APPLICATION FOR RENOVATION/ ADDITION & ALTERATION WORKS",
|
|
118
|
+
blocks: [
|
|
119
|
+
{ type: "address", to: "{siteName}" },
|
|
120
|
+
{ type: "section-header", text: "UNIT OWNER'S PARTICULARS" },
|
|
121
|
+
{ type: "row", fields: [
|
|
122
|
+
{ key: "ownerName", label: "Name", fieldType: "text", required: true, cols: 8 },
|
|
123
|
+
{ key: "unitNo", label: "Unit No.", fieldType: "text", required: true, cols: 4 },
|
|
124
|
+
]},
|
|
125
|
+
{ type: "row", fields: [
|
|
126
|
+
{ key: "contactHome", label: "Contact No. (Home)", fieldType: "text", cols: 6 },
|
|
127
|
+
{ key: "contactMobile", label: "Contact No. (Mobile)", fieldType: "text", required: true, cols: 6 },
|
|
128
|
+
]},
|
|
129
|
+
{ type: "field", field: { key: "contactOffice", label: "Contact No. (Office)", fieldType: "text" } },
|
|
130
|
+
{ type: "section-header", text: "CONTRACTOR'S PARTICULARS" },
|
|
131
|
+
{ type: "row", fields: [
|
|
132
|
+
{ key: "contractorCompany", label: "Company Name", fieldType: "text", required: true, cols: 8 },
|
|
133
|
+
{ key: "contractorRegNo", label: "Registration No.", fieldType: "text", required: true, cols: 4 },
|
|
134
|
+
]},
|
|
135
|
+
{ type: "field", field: { key: "contractorAddress", label: "Address", fieldType: "textarea", required: true } },
|
|
136
|
+
{ type: "row", fields: [
|
|
137
|
+
{ key: "contractorPIC", label: "Person in Charge", fieldType: "text", required: true, cols: 6 },
|
|
138
|
+
{ key: "contractorContactHP", label: "Contact No. (HP)", fieldType: "text", required: true, cols: 6 },
|
|
139
|
+
]},
|
|
140
|
+
{ type: "field", field: { key: "contractorContactOffice", label: "Contact No. (Office)", fieldType: "text" } },
|
|
141
|
+
{
|
|
142
|
+
type: "section-header",
|
|
143
|
+
text: "Summary of Proposed Renovation / Addition & Alteration Works (Attach separate sheet if applicable)",
|
|
144
|
+
},
|
|
145
|
+
{ type: "field", field: { key: "summaryOfWorks", label: "Summary of Works", fieldType: "textarea", required: true } },
|
|
146
|
+
{ type: "row", fields: [
|
|
147
|
+
{ key: "startDate", label: "Start Date", fieldType: "date", required: true, cols: 6 },
|
|
148
|
+
{ key: "endDate", label: "End Date", fieldType: "date", required: true, cols: 6 },
|
|
149
|
+
]},
|
|
150
|
+
{ type: "row", fields: [
|
|
151
|
+
{ key: "hackingFrom", label: "Hacking Period From", fieldType: "date", cols: 6 },
|
|
152
|
+
{ key: "hackingTo", label: "Hacking Period To", fieldType: "date", cols: 6 },
|
|
153
|
+
]},
|
|
154
|
+
{
|
|
155
|
+
type: "paragraph",
|
|
156
|
+
text: "In applying for approval, the Subsidiary Proprietor (Unit Owner) and Contractor undertake to abide by and be subjected to the General Rules & Regulations on Renovation / Addition & Alteration Works as contained in the House Rules.",
|
|
157
|
+
},
|
|
158
|
+
{
|
|
159
|
+
type: "paragraph",
|
|
160
|
+
text: "I / We agree to provide my personal information as indicated and understand that it is solely to be used by the Management for management purposes only. The personal data shall not be used for other purposes.",
|
|
161
|
+
},
|
|
162
|
+
{ type: "signature-row", label: "Signature of Subsidiary Proprietors", key: "signatureProprietor" },
|
|
163
|
+
{ type: "signature-row", label: "Signature of Contractor", key: "signatureContractor" },
|
|
164
|
+
{ type: "divider" },
|
|
165
|
+
{ type: "section-header", text: "FOR MANAGEMENT USE:" },
|
|
166
|
+
{ type: "management-use", items: ["Processed By:", "Work to be completed by (Date):", "Renovation Deposit (S$):", "Bank / Cheque No.:"] },
|
|
167
|
+
{
|
|
168
|
+
type: "paragraph",
|
|
169
|
+
text: "Note 1: The submission by Subsidiary Proprietor(s) to the Management for the \"Application for Renovation / Addition & Alteration Works\" shall not be construed as exemption from compliance with the building regulations/laws or exemption from obtaining approval from other relevant authorities.",
|
|
170
|
+
},
|
|
171
|
+
{
|
|
172
|
+
type: "paragraph",
|
|
173
|
+
text: "Note 2: Subsidiary Proprietor(s) shall consult or liaise directly and/or obtain necessary approvals from the relevant authorities before submitting this application to the Management.",
|
|
174
|
+
},
|
|
175
|
+
],
|
|
176
|
+
},
|
|
177
|
+
|
|
178
|
+
"Letter of Undertaking & Indemnity": {
|
|
179
|
+
title: "LETTER OF UNDERTAKING & INDEMNITY",
|
|
180
|
+
blocks: [
|
|
181
|
+
{ type: "address", to: "{siteName}" },
|
|
182
|
+
{ type: "section-header", text: "LETTER OF UNDERTAKING IN RESPECT OF RENOVATION / ADDITION & ALTERATION WORKS" },
|
|
183
|
+
{ type: "row", fields: [
|
|
184
|
+
{ key: "unitNo", label: "Unit No.", fieldType: "text", required: true, cols: 4 },
|
|
185
|
+
]},
|
|
186
|
+
{ type: "paragraph", text: "I / We, Subsidiary Proprietor(s) of the above unit, hereby authorise our contractor and company to undertake the purposes of renovation / addition & alteration works to the above property." },
|
|
187
|
+
{ type: "row", fields: [
|
|
188
|
+
{ key: "contractorName", label: "Contractor Name", fieldType: "text", required: true, cols: 6 },
|
|
189
|
+
{ key: "contractorCompany", label: "Company (M/s)", fieldType: "text", required: true, cols: 6 },
|
|
190
|
+
]},
|
|
191
|
+
{ type: "row", fields: [
|
|
192
|
+
{ key: "worksFrom", label: "Works Commence From", fieldType: "date", required: true, cols: 6 },
|
|
193
|
+
{ key: "worksTo", label: "Works Conclude To", fieldType: "date", required: true, cols: 6 },
|
|
194
|
+
]},
|
|
195
|
+
{
|
|
196
|
+
type: "paragraph",
|
|
197
|
+
text: "In consideration of you at our request permitting the contractor to have access to the above premises, we hereby agree and undertake to indemnify and hold harmless the Developer, the appointed Managing Agent and the Management, for and against all actions, claims, damages, costs and expenses that may arise from any loss, damage, death, injury from any causes whatsoever to the property or persons caused by or resulting from the Subsidiary Proprietor(s)' A&A works caused by any act, omission, neglect, default of the Subsidiary Proprietor(s), their servants, agents, contractors, sub-contractors, employees, invitees or any other persons whether or not the loss, damage death or injury is due to the negligence of the Developer, the appointed Managing Agent and the Management.",
|
|
198
|
+
},
|
|
199
|
+
{
|
|
200
|
+
type: "paragraph",
|
|
201
|
+
text: "We further undertake to reimburse the developer and its appointed managing agent for all costs involved in removing waste materials and debris arising from our works if they are not removed by our contractors, failing which the costs involved is to be offset from our deposit.",
|
|
202
|
+
},
|
|
203
|
+
{
|
|
204
|
+
type: "paragraph",
|
|
205
|
+
text: "We understand that it is our sole responsibility to consult, liaise directly and/or obtain the necessary approvals from the relevant authorities and/or our own Qualified Person before submitting our application to the Management. We shall not commence works of any nature unless we have received the acknowledgement letter from the Management.",
|
|
206
|
+
},
|
|
207
|
+
{
|
|
208
|
+
type: "paragraph",
|
|
209
|
+
text: "Enclosed herewith is our cheque of S$1,000.00 being the refundable deposit required to be placed with the Management. We shall ensure that our contractors comply with the following:",
|
|
210
|
+
},
|
|
211
|
+
{ type: "paragraph", text: "A. To adhere to the renovation guidelines as laid out in the Renovation / Addition & Alteration Guidelines." },
|
|
212
|
+
{ type: "paragraph", text: "B. To keep the common property clean and remove and cart away waste materials and debris, arising out of works, from time to time and on completion of our works or as and when directed by the Management." },
|
|
213
|
+
{ type: "paragraph", text: "C. To protect the lobby floors, wall finishes, carpets and lifts against damages when transporting materials." },
|
|
214
|
+
{ type: "paragraph", text: "D. To note that any replacement of the existing floor finishes (with or without water proofing membrane) will void the waterproof warranty on the floor finishes." },
|
|
215
|
+
{ type: "paragraph", text: "E. All conditions stated in the application for permit to carry out Addition & Alteration works." },
|
|
216
|
+
{
|
|
217
|
+
type: "paragraph",
|
|
218
|
+
text: "I / We agree to provide my personal information as indicated and understand that it is solely to be used by the Management for management purposes only. The personal data shall not be used for other purposes.",
|
|
219
|
+
},
|
|
220
|
+
{ type: "field", field: { key: "proprietorName", label: "Name of Subsidiary Proprietor(s)", fieldType: "text", required: true } },
|
|
221
|
+
{ type: "signature-row", label: "Signature of Subsidiary Proprietor(s)", key: "signatureOwner" },
|
|
222
|
+
],
|
|
223
|
+
},
|
|
224
|
+
|
|
225
|
+
"Refund of Deposit": {
|
|
226
|
+
title: "REFUND OF DEPOSIT",
|
|
227
|
+
blocks: [
|
|
228
|
+
{ type: "address", to: "{siteName}" },
|
|
229
|
+
{ type: "section-header", text: "REQUEST FOR REFUND OF RENOVATION DEPOSIT" },
|
|
230
|
+
{ type: "paragraph", text: "IN RESPECT OF RENOVATION / ADDITION & ALTERATION WORKS" },
|
|
231
|
+
{ type: "row", fields: [
|
|
232
|
+
{ key: "unitNo", label: "Unit No.", fieldType: "text", required: true, cols: 4 },
|
|
233
|
+
]},
|
|
234
|
+
{ type: "paragraph", text: "Dear Sir/Madam" },
|
|
235
|
+
{
|
|
236
|
+
type: "paragraph",
|
|
237
|
+
text: "We wish to inform you that we have completed the works that are reflected in the Application for Renovation / A&A works and there is no violation of the stated guidelines as contained herewith.",
|
|
238
|
+
},
|
|
239
|
+
{ type: "field", field: { key: "dateOfCompletion", label: "Date of Completion of Renovation / A & A Works", fieldType: "date", required: true } },
|
|
240
|
+
{ type: "field", field: { key: "dateOfJointInspection", label: "Date of Joint Inspection", fieldType: "date" } },
|
|
241
|
+
{ type: "field", field: { key: "remarks", label: "Remarks", fieldType: "textarea" } },
|
|
242
|
+
{
|
|
243
|
+
type: "paragraph",
|
|
244
|
+
text: "I / We agree to provide my personal information as indicated and understand that it is solely to be used by the Management for management purposes only. The personal data shall not be used for other purposes.",
|
|
245
|
+
},
|
|
246
|
+
{ type: "section-header", text: "Submitted By:" },
|
|
247
|
+
{ type: "field", field: { key: "applicantName", label: "Name of Applicant (Subsidiary Proprietor)", fieldType: "text", required: true } },
|
|
248
|
+
{ type: "signature-row", label: "Signature of Applicant (Subsidiary Proprietor)", key: "signatureOwner" },
|
|
249
|
+
{ type: "divider" },
|
|
250
|
+
{ type: "section-header", text: "FOR MANAGEMENT USE:" },
|
|
251
|
+
{ type: "management-use", items: ["Name of MA:", "Signature of MA:", "Date of Refund:", "Cheque No.:", "Received By:"] },
|
|
252
|
+
],
|
|
253
|
+
},
|
|
254
|
+
|
|
255
|
+
"Application for Moving In/Out & Delivery": {
|
|
256
|
+
title: "APPLICATION FOR MOVING IN/OUT & DELIVERY",
|
|
257
|
+
blocks: [
|
|
258
|
+
{ type: "paragraph", text: "(To be completed by Unit Owner or Tenant)" },
|
|
259
|
+
{ type: "address", to: "{siteName}" },
|
|
260
|
+
{ type: "row", fields: [
|
|
261
|
+
{ key: "unitNo", label: "Unit No.", fieldType: "text", required: true, cols: 4 },
|
|
262
|
+
{ key: "moveType", label: "Move In / Out / Delivery", fieldType: "select", required: true, options: ["Move In", "Move Out", "Delivery"], cols: 8 },
|
|
263
|
+
]},
|
|
264
|
+
{ type: "section-header", text: "UNIT OWNER'S / TENANT'S PARTICULARS" },
|
|
265
|
+
{ type: "row", fields: [
|
|
266
|
+
{ key: "ownerTenantName", label: "Name", fieldType: "text", required: true, cols: 6 },
|
|
267
|
+
{ key: "icPassportNo", label: "IC/Passport No.", fieldType: "text", required: true, cols: 6 },
|
|
268
|
+
]},
|
|
269
|
+
{ type: "row", fields: [
|
|
270
|
+
{ key: "contactHome", label: "Contact No. (Home)", fieldType: "text", cols: 6 },
|
|
271
|
+
{ key: "contactHP", label: "Contact No. (HP)", fieldType: "text", required: true, cols: 6 },
|
|
272
|
+
]},
|
|
273
|
+
{ type: "field", field: { key: "contactOffice", label: "Contact No. (Office)", fieldType: "text", cols: 12 } },
|
|
274
|
+
{
|
|
275
|
+
type: "paragraph",
|
|
276
|
+
text: "I / We shall be responsible for our mover(s) (particulars below) complying with the Rules & Regulations of {siteName}.",
|
|
277
|
+
},
|
|
278
|
+
{ type: "section-header", text: "MOVER'S PARTICULARS" },
|
|
279
|
+
{ type: "row", fields: [
|
|
280
|
+
{ key: "moverCompany", label: "Mover's Company", fieldType: "text", required: true, cols: 4 },
|
|
281
|
+
{ key: "moverOffice", label: "Office", fieldType: "text", cols: 4 },
|
|
282
|
+
{ key: "moverHP", label: "HP", fieldType: "text", cols: 4 },
|
|
283
|
+
]},
|
|
284
|
+
{ type: "row", fields: [
|
|
285
|
+
{ key: "supervisorName", label: "Name of Supervisor", fieldType: "text", required: true, cols: 4 },
|
|
286
|
+
{ key: "supervisorIDPassport", label: "ID/Passport No.", fieldType: "text", cols: 4 },
|
|
287
|
+
{ key: "supervisorWorkPermit", label: "Work Permit", fieldType: "text", cols: 4 },
|
|
288
|
+
]},
|
|
289
|
+
{ type: "row", fields: [
|
|
290
|
+
{ key: "moverAddress", label: "Address", fieldType: "text", cols: 4 },
|
|
291
|
+
{ key: "vehicleType", label: "Vehicle Type", fieldType: "text", cols: 4 },
|
|
292
|
+
{ key: "vehicleRegn", label: "Vehicle Regn", fieldType: "text", cols: 4 },
|
|
293
|
+
]},
|
|
294
|
+
{ type: "section-header", text: "Undertakings by Subsidiary Proprietor / Tenant" },
|
|
295
|
+
{
|
|
296
|
+
type: "paragraph",
|
|
297
|
+
text: "I confirm that I have read and will abide by the House Rules governing the Moving In / Out & Delivery (or any changes to the House Rules thereafter) as determined by the Management.",
|
|
298
|
+
},
|
|
299
|
+
{
|
|
300
|
+
type: "paragraph",
|
|
301
|
+
text: "I / We agree to provide my personal information as indicated and understand that it is solely to be used by the Management for management purposes only. The personal data shall not be used for other purposes.",
|
|
302
|
+
},
|
|
303
|
+
{ type: "signature-row", label: "Signature", key: "signatureOwner" },
|
|
304
|
+
{ type: "divider" },
|
|
305
|
+
{ type: "section-header", text: "FOR MANAGEMENT USE:" },
|
|
306
|
+
{ type: "management-use", items: ["Security Deposit (S$1,000.00) By Bank / Cheque No.:", "Approved By:", "Date:"] },
|
|
307
|
+
],
|
|
308
|
+
},
|
|
309
|
+
|
|
310
|
+
"Application for Electronic Access Card": {
|
|
311
|
+
title: "APPLICATION FOR ELECTRONIC ACCESS CARD",
|
|
312
|
+
blocks: [
|
|
313
|
+
{ type: "address", to: "{siteName}" },
|
|
314
|
+
{ type: "section-header", text: "TO BE COMPLETED BY UNIT OWNER" },
|
|
315
|
+
{ type: "row", fields: [
|
|
316
|
+
{ key: "ownerName", label: "Owner Name", fieldType: "text", required: true, cols: 8 },
|
|
317
|
+
{ key: "unitNo", label: "Unit No.", fieldType: "text", required: true, cols: 4 },
|
|
318
|
+
]},
|
|
319
|
+
{ type: "row", fields: [
|
|
320
|
+
{ key: "noOfCards", label: "No. of Access Cards", fieldType: "number", required: true, cols: 4 },
|
|
321
|
+
]},
|
|
322
|
+
{ type: "field", field: { key: "ownerNRIC", label: "Owner's NRIC No.", fieldType: "text", required: true } },
|
|
323
|
+
{ type: "row", fields: [
|
|
324
|
+
{ key: "ownerContactHP", label: "Owner's Contact No. (HP)", fieldType: "text", required: true, cols: 6 },
|
|
325
|
+
{ key: "ownerContactR", label: "Owner's Contact No. (R)", fieldType: "text", cols: 6 },
|
|
326
|
+
]},
|
|
327
|
+
{ type: "section-header", text: "TO BE COMPLETED FOR NOMINEE (IF APPLICABLE)" },
|
|
328
|
+
{ type: "row", fields: [
|
|
329
|
+
{ key: "nomineeNoOfCards", label: "No. of Nominee Access Cards", fieldType: "number", cols: 4 },
|
|
330
|
+
]},
|
|
331
|
+
{ type: "paragraph", text: "If the Nominee is a Tenant, please state:" },
|
|
332
|
+
{ type: "field", field: { key: "tenantName", label: "Name of Tenant", fieldType: "text" } },
|
|
333
|
+
{ type: "row", fields: [
|
|
334
|
+
{ key: "tenancyCommence", label: "Commencement of Tenancy", fieldType: "date", cols: 6 },
|
|
335
|
+
{ key: "tenancyExpiry", label: "Expiry of Tenancy", fieldType: "date", cols: 6 },
|
|
336
|
+
]},
|
|
337
|
+
{ type: "field", field: { key: "tenantICPassport", label: "Tenant's I/C or Passport No.", fieldType: "text" } },
|
|
338
|
+
{ type: "row", fields: [
|
|
339
|
+
{ key: "tenantContactHP", label: "Tenant's Contact No. (HP)", fieldType: "text", cols: 6 },
|
|
340
|
+
{ key: "tenantContactR", label: "Tenant's Contact No. (R)", fieldType: "text", cols: 6 },
|
|
341
|
+
]},
|
|
342
|
+
{ type: "section-header", text: "RULES AND REGULATIONS" },
|
|
343
|
+
{ type: "paragraph", text: "A. The electronic access card is used to access the side gate, lift lobby and common facilities (where applicable) within the development." },
|
|
344
|
+
{ type: "paragraph", text: "B. Additional cards above the allocated number (as distributed at time of vacant possession) will be charged at S$50.00 per card (subject to availability). Units requiring extra cards will be considered on a case-by-case basis and documentary proof is required to prove that the applicants are residing in the Development." },
|
|
345
|
+
{ type: "paragraph", text: "C. The replacement of lost / damaged card is charged at S$50.00 per card (non-refundable). All lost card/s must be reported to the Management immediately." },
|
|
346
|
+
{ type: "paragraph", text: "D. All residents must exercise due care and diligence in the maintenance of the access card to keep it in good working condition. Keep all cards away from any magnetic device/fields and place them in a cool dry place when not in use." },
|
|
347
|
+
{ type: "paragraph", text: "E. The Management reserves the right to request for documentary proof to prove that the applicant/s is/are residing in the development before issuing the access card/s." },
|
|
348
|
+
{ type: "paragraph", text: "F. Upon termination of lease, tenants must surrender the access card/s to the Management before moving out of the estate." },
|
|
349
|
+
{ type: "paragraph", text: "G. When the owner sells/lease his/her unit, he/she must surrender the access card/s to the Management prior to moving out of the estate." },
|
|
350
|
+
{ type: "paragraph", text: "H. The Management, personnel or any appointed representative of the Managing Agent may require the person/s using the access card to identify themselves." },
|
|
351
|
+
{ type: "paragraph", text: "I. The access card/s will only be issued to residents living in {siteName}. Visitors at the Development will not be eligible for an access card. The Management reserves the right to reject the application if documentary proof of the intended access cardholder is not fully furnished." },
|
|
352
|
+
{ type: "paragraph", text: "J. The Management reserves the right to change any rules and regulations." },
|
|
353
|
+
{ type: "paragraph", text: "K. All cheques are to be issued in favour of xxxxxx. – the MCST Plan No. (upon constitution)." },
|
|
354
|
+
{
|
|
355
|
+
type: "paragraph",
|
|
356
|
+
text: "I / We agree to provide my personal information as indicated and understand that it is solely to be used by the Management for management purposes only. The personal data shall not be used for other purposes.",
|
|
357
|
+
},
|
|
358
|
+
{ type: "signature-row", label: "Signature", key: "signatureOwner" },
|
|
359
|
+
{ type: "divider" },
|
|
360
|
+
{ type: "section-header", text: "FOR MANAGEMENT USE:" },
|
|
361
|
+
{ type: "management-use", items: ["Application Fees Received ($):", "By Bank / Cheque No.:", "Approved By:", "Date:"] },
|
|
362
|
+
],
|
|
363
|
+
},
|
|
364
|
+
|
|
365
|
+
"Application for Main Entrance RFID Transponder": {
|
|
366
|
+
title: "APPLICATION FOR MAIN ENTRANCE RFID TRANSPONDER",
|
|
367
|
+
blocks: [
|
|
368
|
+
{ type: "address", to: "{siteName}" },
|
|
369
|
+
{ type: "row", fields: [
|
|
370
|
+
{ key: "ownerName", label: "Unit Owner Name", fieldType: "text", required: true, cols: 8 },
|
|
371
|
+
{ key: "unitNo", label: "Unit No.", fieldType: "text", required: true, cols: 4 },
|
|
372
|
+
]},
|
|
373
|
+
{ type: "row", fields: [
|
|
374
|
+
{ key: "contactHome", label: "Contact No. (Home)", fieldType: "text", cols: 6 },
|
|
375
|
+
{ key: "contactHP", label: "Contact No. (HP)", fieldType: "text", required: true, cols: 6 },
|
|
376
|
+
]},
|
|
377
|
+
{ type: "section-header", text: "REASONS FOR APPLICATION (Please tick accordingly)" },
|
|
378
|
+
{
|
|
379
|
+
type: "checkbox-group",
|
|
380
|
+
items: [
|
|
381
|
+
{ key: "reasonNewOwner", label: "I am the new owner of the above apartment and wish to apply for vehicle parking" },
|
|
382
|
+
{ key: "reasonLost", label: "I have lost my RFID transponder" },
|
|
383
|
+
{ key: "reasonDamaged", label: "The existing RFID transponder is damaged/faulty" },
|
|
384
|
+
],
|
|
385
|
+
},
|
|
386
|
+
{ type: "section-header", text: "RULES AND REGULATIONS" },
|
|
387
|
+
{ type: "paragraph", text: "A. The RFID transponder is used for vehicle access into the development through the main entrance gate and strictly one (1) number of RFID transponder is issued to one (1) unit (at no charge) for first (1st) application only, subject to Management's approval." },
|
|
388
|
+
{ type: "paragraph", text: "B. The replacement of lost / damaged RFID transponder is charged at S$100.00 per unit (non-refundable). The damaged or faulty RFID transponder must be returned to the Management before the issue of the replacement remote control." },
|
|
389
|
+
{ type: "paragraph", text: "C. All residents must exercise due care and diligence in the maintenance of the RFID transponder to keep it in good working condition. Keep RFID transponder away from any magnetic device/fields and place it in a cool dry place when not in use." },
|
|
390
|
+
{ type: "paragraph", text: "D. The Management reserves the right to request for documentary proof to prove that the applicant is residing in the development before issuing the RFID transponder." },
|
|
391
|
+
{ type: "paragraph", text: "E. Upon termination of lease, tenants must surrender the RFID transponder to the Management before moving out of the development. When the owner leases his/her unit, he/she must surrender the RFID transponder to the Management prior to moving out of the development." },
|
|
392
|
+
{ type: "paragraph", text: "F. The RFID transponder will only be issued to residents who apply for carparking within {siteName}. Visitors to the Development will not be eligible for a RFID transponder. The Management reserves the right to reject any application if documentary proof of the intended RFID transponder is not fully furnished." },
|
|
393
|
+
{ type: "paragraph", text: "G. The Management reserves the right to change any rules and regulations." },
|
|
394
|
+
{ type: "paragraph", text: "H. All cheques are to be issued in favour of xxxxxxx – the MCST Plan No. (upon constitution)." },
|
|
395
|
+
{
|
|
396
|
+
type: "paragraph",
|
|
397
|
+
text: "I / We confirm that the above particulars are correct and undertake to comply with all rules and regulations governing the issuance of the RFID transponder. I / We understand that the RFID transponder will remain the property of the Management and shall be surrendered on demand.",
|
|
398
|
+
},
|
|
399
|
+
{
|
|
400
|
+
type: "paragraph",
|
|
401
|
+
text: "I / We agree to provide my personal information as indicated and understand that it is solely to be used by the Management for management purposes only. The personal data shall not be used for other purposes.",
|
|
402
|
+
},
|
|
403
|
+
{ type: "signature-row", label: "Signature of Subsidiary Proprietor", key: "signatureOwner" },
|
|
404
|
+
{ type: "divider" },
|
|
405
|
+
{ type: "section-header", text: "ACKNOWLEDGEMENT" },
|
|
406
|
+
{ type: "acknowledgement", text: "I / We hereby acknowledge receipt of the RFID transponder." },
|
|
407
|
+
{ type: "signature-row", label: "Signature of Recipient", key: "signatureRecipient" },
|
|
408
|
+
{ type: "divider" },
|
|
409
|
+
{ type: "section-header", text: "FOR MANAGEMENT USE:" },
|
|
410
|
+
{ type: "management-use", items: ["Approved By:", "Cheque No.:", "Date:", "RFID Tag No.:"] },
|
|
411
|
+
],
|
|
412
|
+
},
|
|
413
|
+
|
|
414
|
+
"Application for Bicycle Parking": {
|
|
415
|
+
title: "APPLICATION FOR BICYCLE PARKING",
|
|
416
|
+
blocks: [
|
|
417
|
+
{ type: "address", to: "{siteName}" },
|
|
418
|
+
{
|
|
419
|
+
type: "row",
|
|
420
|
+
fields: [
|
|
421
|
+
{ key: "unitOwnerTenantName", label: "Unit Owner / Tenant Name", fieldType: "text", required: true, cols: 8 },
|
|
422
|
+
{ key: "unitNo", label: "Unit No. #", fieldType: "text", required: true, cols: 4 },
|
|
423
|
+
],
|
|
424
|
+
},
|
|
425
|
+
{
|
|
426
|
+
type: "row",
|
|
427
|
+
fields: [
|
|
428
|
+
{ key: "contactHome", label: "Contact No (Home)", fieldType: "text", cols: 6 },
|
|
429
|
+
{ key: "contactHP", label: "Contact No (HP)", fieldType: "text", required: true, cols: 6 },
|
|
430
|
+
],
|
|
431
|
+
},
|
|
432
|
+
{ type: "section-header", text: "REASONS FOR APPLICATION (Please tick accordingly)" },
|
|
433
|
+
{
|
|
434
|
+
type: "checkbox-group",
|
|
435
|
+
single: true,
|
|
436
|
+
items: [
|
|
437
|
+
{ key: "reasonNewOwner", label: "I am the new owner / tenant of the above apartment" },
|
|
438
|
+
{ key: "reasonSoldChanged", label: "I have sold / changed my bicycle" },
|
|
439
|
+
{ key: "reasonOthers", label: "Others – Please elaborate", elaborateKey: "reasonOthersDetail" },
|
|
440
|
+
],
|
|
441
|
+
},
|
|
442
|
+
{
|
|
443
|
+
type: "paragraph",
|
|
444
|
+
text: "I / We have read the above conditions and agreed to abide by the terms and conditions therein. I / We confirmed that the above particulars are correct and undertake to comply with all rules and regulations governing the usage of bicycle parking.",
|
|
445
|
+
},
|
|
446
|
+
{
|
|
447
|
+
type: "paragraph",
|
|
448
|
+
text: "I / We agree to provide my personal information as indicated and understand that it is solely to be used by the Management for management purposes only. The personal data shall not be used for other purposes.",
|
|
449
|
+
},
|
|
450
|
+
{
|
|
451
|
+
type: "paragraph",
|
|
452
|
+
text: "I / We understand that when I / We lease / move out of the apartment. I / We are to surrender use of the bicycle parking to the Management immediately upon vacating the premises. I / We agree to adhere to the above rules governing the bicycle parking.",
|
|
453
|
+
},
|
|
454
|
+
{ type: "signature-row", label: "Signature of Subsidiary Proprietor / Tenant", key: "signatureOwner" },
|
|
455
|
+
{ type: "divider" },
|
|
456
|
+
{ type: "section-header", text: "ACKNOWLEDGEMENT" },
|
|
457
|
+
{ type: "acknowledgement", text: "I/We hereby acknowledge receipt of remote control." },
|
|
458
|
+
{ type: "signature-row", label: "Signature of Recipient", key: "signatureRecipient" },
|
|
459
|
+
{ type: "divider" },
|
|
460
|
+
{ type: "section-header", text: "FOR MANAGEMENT USE:" },
|
|
461
|
+
{ type: "management-use", items: ["Tag No. Issued:", "Approved By:", "Date:"] },
|
|
462
|
+
],
|
|
463
|
+
},
|
|
464
|
+
|
|
465
|
+
"Application for Booking of BBQ Pit": {
|
|
466
|
+
title: "APPLICATION FOR BOOKING OF BBQ PIT",
|
|
467
|
+
blocks: [
|
|
468
|
+
{ type: "address", to: "{siteName}" },
|
|
469
|
+
{ type: "row", fields: [
|
|
470
|
+
{ key: "residentName", label: "Resident's Name", fieldType: "text", required: true, cols: 8 },
|
|
471
|
+
{ key: "unitNo", label: "Unit No.", fieldType: "text", required: true, cols: 4 },
|
|
472
|
+
]},
|
|
473
|
+
{ type: "row", fields: [
|
|
474
|
+
{ key: "contactHome", label: "Contact No. (Home)", fieldType: "text", cols: 6 },
|
|
475
|
+
{ key: "contactHP", label: "Contact No. (HP)", fieldType: "text", required: true, cols: 6 },
|
|
476
|
+
]},
|
|
477
|
+
{ type: "row", fields: [
|
|
478
|
+
{ key: "bookingDate", label: "Date of Booking", fieldType: "date", required: true, cols: 6 },
|
|
479
|
+
{ key: "noOfGuests", label: "Nos. of Guests", fieldType: "number", required: true, cols: 6 },
|
|
480
|
+
]},
|
|
481
|
+
{ type: "section-header", text: "Alfresco BBQ – Select Time Slot" },
|
|
482
|
+
{
|
|
483
|
+
type: "checkbox-group",
|
|
484
|
+
items: [
|
|
485
|
+
{ key: "timeSlotAM", label: "10.00 am – 4.00 pm" },
|
|
486
|
+
{ key: "timeSlotPM", label: "5.00 pm – 10.00 pm" },
|
|
487
|
+
],
|
|
488
|
+
},
|
|
489
|
+
{
|
|
490
|
+
type: "paragraph",
|
|
491
|
+
text: "I / We agree to provide my personal information as indicated and understand that the management may collect and use and disclose such information for management of the development, security and monitoring purposes. I / We further agree that such information may be disclosed to the third parties who are providing the services to the development.",
|
|
492
|
+
},
|
|
493
|
+
{
|
|
494
|
+
type: "paragraph",
|
|
495
|
+
text: "I / We agree to abide by the rules & regulations stated in Residents' Handbook - Recreational Facilities, Roof Terrace BBQ Pit and shall comply with the conditions stated therein.",
|
|
496
|
+
},
|
|
497
|
+
{
|
|
498
|
+
type: "paragraph",
|
|
499
|
+
text: "I / We agree to pay an Administrative Fee of Singapore Dollars Ten Only ($30.00) per session (non-refundable) and a refundable Security Deposit of Singapore Dollars One Hundred Only (S$100.00) shall be made by crossed cheque payable to \"xxxxxxx.\" – to the MCST Plan No. (upon constitution), failing which the facility will be made open for booking again.",
|
|
500
|
+
},
|
|
501
|
+
{ type: "signature-row", label: "Signature of Resident", key: "signatureOwner" },
|
|
502
|
+
{ type: "divider" },
|
|
503
|
+
{ type: "section-header", text: "FOR MANAGEMENT USE:" },
|
|
504
|
+
{ type: "management-use", items: ["Administrative Fee Bank & Cheque No.:", "Refundable Security Deposit Bank & Cheque No.:", "Amount:", "Approved By:", "Date:"] },
|
|
505
|
+
],
|
|
506
|
+
},
|
|
507
|
+
|
|
508
|
+
"Application for Booking of Rooftop Bar/Dining": {
|
|
509
|
+
title: "APPLICATION FOR BOOKING OF ROOFTOP BAR/DINNING",
|
|
510
|
+
blocks: [
|
|
511
|
+
{ type: "address", to: "{siteName}" },
|
|
512
|
+
{ type: "row", fields: [
|
|
513
|
+
{ key: "residentName", label: "Resident's Name", fieldType: "text", required: true, cols: 8 },
|
|
514
|
+
{ key: "unitNo", label: "Unit No.", fieldType: "text", required: true, cols: 4 },
|
|
515
|
+
]},
|
|
516
|
+
{ type: "row", fields: [
|
|
517
|
+
{ key: "contactHome", label: "Contact No. (Home)", fieldType: "text", cols: 6 },
|
|
518
|
+
{ key: "contactHP", label: "Contact No. (HP)", fieldType: "text", required: true, cols: 6 },
|
|
519
|
+
]},
|
|
520
|
+
{ type: "row", fields: [
|
|
521
|
+
{ key: "bookingDate", label: "Date of Booking", fieldType: "date", required: true, cols: 6 },
|
|
522
|
+
{ key: "noOfGuests", label: "Nos. of Guests", fieldType: "number", required: true, cols: 6 },
|
|
523
|
+
]},
|
|
524
|
+
{
|
|
525
|
+
type: "checkbox-group",
|
|
526
|
+
title: "Rooftop Bar",
|
|
527
|
+
items: [
|
|
528
|
+
{ key: "rooftopBarAM", label: "10.00 am – 4.00 pm" },
|
|
529
|
+
{ key: "rooftopBarPM", label: "5.00 pm – 10.00 pm" },
|
|
530
|
+
],
|
|
531
|
+
},
|
|
532
|
+
{
|
|
533
|
+
type: "checkbox-group",
|
|
534
|
+
title: "Rooftop Dining",
|
|
535
|
+
items: [
|
|
536
|
+
{ key: "rooftopDiningAM", label: "10.00 am – 4.00 pm" },
|
|
537
|
+
{ key: "rooftopDiningPM", label: "5.00 pm – 10.00 pm" },
|
|
538
|
+
],
|
|
539
|
+
},
|
|
540
|
+
{
|
|
541
|
+
type: "paragraph",
|
|
542
|
+
text: "I / We agree to provide my personal information as indicated and understand that the management may collect and use and disclose such information for management of the development, security and monitoring purposes. I / We further agree that such information may be disclosed to the third parties who are providing the services to the development.",
|
|
543
|
+
},
|
|
544
|
+
{
|
|
545
|
+
type: "paragraph",
|
|
546
|
+
text: "I / We agree to abide by the rules & regulations stated in Residents' Handbook - Recreational Facilities, Rooftop Bar and Rooftop Dinning and shall comply with the conditions stated therein.",
|
|
547
|
+
},
|
|
548
|
+
{ type: "signature-row", label: "Signature of Resident", key: "signatureOwner" },
|
|
549
|
+
{ type: "divider" },
|
|
550
|
+
{ type: "section-header", text: "FOR MANAGEMENT USE:" },
|
|
551
|
+
{ type: "management-use", items: ["Approved By:", "Date:"] },
|
|
552
|
+
],
|
|
553
|
+
},
|
|
554
|
+
|
|
555
|
+
"Letter of Undertaking by Marketing Agent": {
|
|
556
|
+
title: "LETTER OF UNDERTAKING BY MARKETING AGENT",
|
|
557
|
+
blocks: [
|
|
558
|
+
{ type: "address", to: "{siteName}" },
|
|
559
|
+
{ type: "paragraph", text: "Dear Sir/Madam" },
|
|
560
|
+
{ type: "section-header", text: "LETTER OF AUTHORIZATION TO ACT AS MARKETING AGENT – {siteName}" },
|
|
561
|
+
{ type: "row", fields: [
|
|
562
|
+
{ key: "agentName", label: "Name of Marketing Agent", fieldType: "text", required: true, cols: 6 },
|
|
563
|
+
{ key: "company", label: "Company", fieldType: "text", required: true, cols: 6 },
|
|
564
|
+
]},
|
|
565
|
+
{ type: "row", fields: [
|
|
566
|
+
{ key: "unitNo", label: "Unit No. (authorized to market)", fieldType: "text", required: true, cols: 4 },
|
|
567
|
+
]},
|
|
568
|
+
{
|
|
569
|
+
type: "paragraph",
|
|
570
|
+
text: "I, (herein known as the \"Marketing Agent\") of the above Company, hereby declare that I am authorized by the Subsidiary Proprietor(s) of the above Unit to market their unit at the said development.",
|
|
571
|
+
},
|
|
572
|
+
{
|
|
573
|
+
type: "paragraph",
|
|
574
|
+
text: "I agree to above with the Rules and Regulations as stated in the Residents' Handbook (or any changes to it thereafter) as determined by the Management and undertake to be fully responsible for my good conduct and behaviour.",
|
|
575
|
+
},
|
|
576
|
+
{
|
|
577
|
+
type: "paragraph",
|
|
578
|
+
text: "I hereby undertake that I shall not harass and canvass for business from any other visitors, occupiers, owners at the said development.",
|
|
579
|
+
},
|
|
580
|
+
{
|
|
581
|
+
type: "paragraph",
|
|
582
|
+
text: "I will also undertake NOT to slot any print advertisements in the mailboxes and/or into any units, put up any form of outdoor advertisements (e.g. banners) to be displayed on any part of the development.",
|
|
583
|
+
},
|
|
584
|
+
{
|
|
585
|
+
type: "paragraph",
|
|
586
|
+
text: "I will further undertake and ensure that neither I, my prospective tenant(s) or purchaser(s) do NOT take any photograph and/or conduct any filming on any part of the development without the approval of the Management.",
|
|
587
|
+
},
|
|
588
|
+
{ type: "field", field: { key: "licenseNo", label: "License No.", fieldType: "text" } },
|
|
589
|
+
{ type: "row", fields: [
|
|
590
|
+
{ key: "nricLast4", label: "NRIC No. (last 4 digits)", fieldType: "text", cols: 4 },
|
|
591
|
+
]},
|
|
592
|
+
{ type: "row", fields: [
|
|
593
|
+
{ key: "contactHP", label: "Contact No. (HP)", fieldType: "text", required: true, cols: 6 },
|
|
594
|
+
{ key: "contactOffice", label: "Contact No. (O)", fieldType: "text", cols: 6 },
|
|
595
|
+
]},
|
|
596
|
+
{ type: "field", field: { key: "email", label: "Email", fieldType: "text" } },
|
|
597
|
+
{
|
|
598
|
+
type: "paragraph",
|
|
599
|
+
text: "I agree on to provide my personal information as indicated and understand that it is solely to be used by the Management for management purposes only. The personal data shall not be used for other purposes.",
|
|
600
|
+
},
|
|
601
|
+
{ type: "signature-row", label: "Name & Signature of Marketing Agent", key: "signatureAgent" },
|
|
602
|
+
{ type: "paragraph", text: "Company Stamp (if applicable)" },
|
|
603
|
+
],
|
|
604
|
+
},
|
|
605
|
+
|
|
606
|
+
"Vehicle Registration Form": {
|
|
607
|
+
title: "VEHICLE REGISTRATION FORM",
|
|
608
|
+
blocks: [
|
|
609
|
+
{ type: "address", to: "{siteName}" },
|
|
610
|
+
{ type: "row", fields: [
|
|
611
|
+
{ key: "ownerName", label: "Name of Unit Owner", fieldType: "text", required: true, cols: 8 },
|
|
612
|
+
{ key: "ownerNRIC", label: "NRIC", fieldType: "text", required: true, cols: 4 },
|
|
613
|
+
]},
|
|
614
|
+
{ type: "row", fields: [
|
|
615
|
+
{ key: "ownerContactHP", label: "Contact No. (HP)", fieldType: "text", required: true, cols: 6 },
|
|
616
|
+
]},
|
|
617
|
+
{ type: "row", fields: [
|
|
618
|
+
{ key: "tenantName", label: "Name of Tenant", fieldType: "text", cols: 8 },
|
|
619
|
+
{ key: "tenantNRIC", label: "NRIC", fieldType: "text", cols: 4 },
|
|
620
|
+
]},
|
|
621
|
+
{ type: "row", fields: [
|
|
622
|
+
{ key: "tenantContactHP", label: "Tenant Contact No. (HP)", fieldType: "text", cols: 6 },
|
|
623
|
+
]},
|
|
624
|
+
{ type: "field", field: { key: "unitNo", label: "Unit No.", fieldType: "text", required: true } },
|
|
625
|
+
{ type: "field", field: { key: "carOwnerName", label: "Car Owner Name", fieldType: "text", required: true } },
|
|
626
|
+
{ type: "field", field: { key: "carPlateNo", label: "Car Plate No. (Log Card to be submitted)", fieldType: "text", required: true } },
|
|
627
|
+
{ type: "field", field: { key: "makeModelColour", label: "Make / Model / Colour", fieldType: "text", required: true } },
|
|
628
|
+
{ type: "paragraph", text: "A. I/We agree to abide by the rules and regulations as stipulated in {siteName} handbook at all times." },
|
|
629
|
+
{ type: "paragraph", text: "B. I/We also understand that all vehicles are parked entirely at the owner's risk. All persons and vehicles within the car park enter entirely at the risk of such person and/or the motorist. Persons entering the car park shall be responsible for any damage or loss to the car(s) parked or the car park equipment caused by such persons." },
|
|
630
|
+
{ type: "paragraph", text: "C. I/We acknowledge that the vehicle shall be parked properly without causing any inconvenience to other users." },
|
|
631
|
+
{ type: "paragraph", text: "D. I/We acknowledge that I/we fully understand the balloting of car park lots when required." },
|
|
632
|
+
{ type: "paragraph", text: "E. I/We acknowledge that for 2nd and subsequent car application will not be entertained. The Management reserved the right to terminate the approval of vehicle application at any point in time." },
|
|
633
|
+
{ type: "field", field: { key: "acknowledgeBy", label: "Acknowledge By", fieldType: "text" } },
|
|
634
|
+
{ type: "signature-row", label: "Signature of Acknowledge", key: "signatureOwner" },
|
|
635
|
+
{ type: "field", field: { key: "signerName", label: "Name (Owner / Tenant)", fieldType: "text", required: true } },
|
|
636
|
+
],
|
|
637
|
+
},
|
|
638
|
+
};
|
|
639
|
+
|
|
640
|
+
export default function useOnlineFormPages() {
|
|
641
|
+
return { formPages };
|
|
642
|
+
}
|