-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapply-for-nidhi-registration.php
242 lines (188 loc) · 8.62 KB
/
apply-for-nidhi-registration.php
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
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
<?php include('header.php');?>
<!-- BANNER-inner -->
<div class="banner-inner">
<img src="images/nidhi.jpg" alt="" class="innar-img">
</div>
<!-- consumer-complaint -->
<div class="consumer-complaint">
<div class="container">
<h2>Nidhi Company Registration</h2>
<p></p>
<br><br>
<div class="row">
<div class="col-md-5">
<div class="complaint-form" data-aos-duration="1500" data-aos="zoom-in">
<form method="post" enctype="multipart/form-data">
<div class="input-cont">
<label for="name">Name </label>
<input type="text" placeholder=" Name" name="name" required>
</div>
<div class="input-cont">
<label for="name">Phone no </label>
<input type="text" placeholder=" Phone no" name="phone" required pattern="[0-9]+">
</div>
<div class="input-cont">
<label for="name">Email </label>
<input type="email" placeholder=" Email" required name="email">
</div>
<div class="input-cont">
<label for="name">Address </label>
<input type="text" placeholder=" Address" required="" name="address">
</div>
<div class="input-cont">
<label for="name">Aadhar card number: </label>
<input type="text" placeholder=" Aadhar card number" name="adhar" required>
</div>
<div class="input-cont">
<label for="name">Select State: </label>
<select name="state" id="state" required>
<option value="">State</option>
<?php
$table1='state_list';
$stmt=$show->state($table1);
$num=$stmt->rowCount();
if($num>0){
while($row=$stmt->fetch(PDO::FETCH_ASSOC)){
echo "<option value='".$row['state']."'>".$row['state']."</option>";
}
}
?>
</select>
</div>
<div class="input-cont">
<label for="name">Select Fees : </label>
<select name="fees" required id="fess">
<option value="3999">3999 /-</option>
</select>
</div>
<div class="input-cont">
<label for="name">Uplode Image: <sub>( optional max size 2MB )</sub> </label>
<input type="file" id="myFile" name="file" onchange="return fileValidation('myFile','2000')" >
</div>
<div class="input-cont" style="margin:25px 0 0; width: 35%; ">
<input type="submit" name="book_sub" value="submit" class="input-success" style="">
</div>
</form>
<?php if(isset($_POST['book_sub'])){
$uid=$show->getid('ids','USR');
$img=$show->imageEdit($_FILES['file']['name']);
$data = array(
'user_id' => $uid,
'name' => htmlentities(strip_tags($_POST['name'])),
'phone' => htmlentities(strip_tags($_POST['phone'])),
'email' => htmlentities(strip_tags($_POST['email'])),
'address'=>htmlentities(strip_tags($_POST['address'])),
'state'=>htmlentities(strip_tags($_POST['state'])),
'adhar'=>htmlentities(strip_tags($_POST['adhar'])),
'fees'=>htmlentities(strip_tags($_POST['fees'])),
'image'=>$img,
'date'=>date('Y-m-d'),
'payment_status'=>'Pending',
'status'=>'Pending',
'type'=>'nidhi'
);
// print_r($data);
move_uploaded_file($_FILES['file']['tmp_name'],"product_img/".$img);
$em=htmlentities(strip_tags($_POST['email']));
if($show->insert('business_forms',$data)){
$id=$db->lastInsertId();
echo '<script>
setTimeout(function() {
swal({
title: "Thank You!",
text: "You will be redirected to payment now.",
type: "success"
}, function() {
window.location = "pay_now.php?oid='.$id.'";
});
}, 1000);
</script>';
}
}?>
</div>
</div>
<div class="col-md-7">
<div class="complaint-online">
<h5>Nidhi Company Registration</h5>
<br>
<h6>A Nidhi Company is a company, which is a non- banking financial sector and it comes under the Companies Act, 2013. This company is formed with a motto to lend and borrow money within its members and it is very easy to form as a company. It requires at least 200 members in a year to get its Nidhi Company status. Their mode of operation is through its members only. It is the easy form of business. Nidhi Companies are regulated by the Ministry of Corporate Affairs (MCA). They are also known as Benefit Fund, Permanent Fund etc.</h6><br><br>
<h6><b>FEES:-</b> We do charge Rs.3999 as professional fee, Govt. fees & DSC charge are excluded
</h6>
</div>
<div class="complaint-online">
<h6><b>Documents for Nidhi Company Registration:-</b>
</h6>
<br>
<li><img src="images/pas1.png" alt="" class="pan-icon">Passport Size Photograph</li>
<li><img src="images/pas2.png" alt="" class="pan-icon">Copy of PAN Card</li>
<li><img src="images/pas3.png" alt="" class="pan-icon">Copy of Electricity Bill</li>
<li><img src="images/pas4.png" alt="" class="pan-icon">Sale Deed (if owned)</li>
<li><img src="images/pas5.png" alt="" class="pan-icon">Copy of Aadhar Card</li>
<li><img src="images/pas6.png" alt="" class="pan-icon">Address Proof(Bank Statement/Mobile/Telephone Bill)</li>
<li><img src="images/pas7.png" alt="" class="pan-icon">Copy of Rent Agreement(if rented)</li>
<li><img src="images/pas8.png" alt="" class="pan-icon">NOC.</li>
</div>
<img src="images/unnamed.jpg" alt="" style="width: 100%;">
</div>
</div>
<div class="row">
<h2>How We Work</h2>
<div class="col-md-4">
<div class="box-work">
<p>Fill our Registration Form and make the Payment.</p>
</div>
</div>
<div class="col-md-4">
<div class="box-work">
<p>We will Create DSC and DIN Number of Director</p>
</div>
</div>
<div class="col-md-4">
<div class="box-work">
<p>Congratulations! You’ve registered your company certificates will be sent by post.</p>
</div>
</div>
<div class="col-md-3">
<div class="box-work">
<p>Expert will call you and receive all the necessary documents.</p>
</div>
</div>
<div class="col-md-3">
<div class="box-work">
<p>Drafting MOA and AOA and Submit.</p>
</div>
</div>
<div class="col-md-3">
<div class="box-work">
<p>Our Experts will start drafting the requirements.</p>
</div>
</div>
<div class="col-md-3">
<div class="box-work">
<p>Your Documents will be filed and submitted to the ROC.</p>
</div>
</div>
</div>
</div>
<div class="faq">
<div class="container">
<h3>FAQ</h3>
<h6><b>Please Check the Frequently Asked Questions.</b></h6>
<br><br>
<div class="col-md-12">
<div class="faq-box">
<h5>Which Act of the Indian Govt. administrates the Nidhi Company registration process?</h5>
<p>In India, section 406 of the Companies Act, 2013 recognizes the Nidhi Company Registration process and oversees the correlated instances with the recognition of the Ministry of Corporate Affairs (MCA) of the Indian Govt.</p>
<h5>What is the Minimum Capital requirement to incorporate a Nidhi Company?</h5>
<p>As per the provisions of the Ministry of Corporate Affairs (MCA), the minimum capital requirement to incorporate a Nidhi Company is Rs. 5 Lakhs. The MCA also specified that the capital has to be raised two times at least.</p>
<h5>On what condition a Nidhi Company can provide loans to its members?</h5>
<p>A registered Nidhi company can provide loans to its members once the particular individual provide an equivalent security expanse like Gold, Silver or any type of financial credential against the loan.</p>
<h5>What is the requirement of minimum numbers of Members in Nidhi Company?</h5>
<p>As per the Companies Act, 2013 and the provisions of the Ministry of Corporate Affairs, a Nidhi Company is required to have at least 200 enrolled members.</p>
<h5>Who can become a member/shareholder in a Nidhi Company?</h5>
<p>Any Indian citizen who is above 18 years of age, can become a member or shareholder in a Nidhi Company. In the process, the particular individual is mandated to produce the valid age-proof and address proof.</p>
</div>
</div>
</div>
</div>
<?php include('footer.php');?>