| Server IP : 103.234.187.230 / Your IP : 216.73.216.216 Web Server : Apache System : Linux lserver42043-ind.megavelocity.net 3.10.0-1160.108.1.el7.x86_64 #1 SMP Thu Jan 25 16:17:31 UTC 2024 x86_64 User : apache ( 48) PHP Version : 7.4.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /var/www/html/adeetie/application/modules/auth/views/ |
Upload File : |
<style>
.mandatory{
color:red;
}
</style>
<div class="container dashboard form-page" style="min-height:600px">
<div class="col-sm-12"><br/>
<h3 class="contact-title">User Registration</h3>
</div>
<?php echo form_open("auth/register",array(
'class' => 'register-form'));?>
<div class="col-sm-12">
<?php if(!empty( $this->session->flashdata('message') ) ){ ?>
<div class="alert alert-success" role="alert">
<?php echo $this->session->flashdata('message'); ?>
</div>
<?php }else if(!empty($message)){ ?>
<div class="alert alert-danger" role="alert">
<?php echo $message; ?>
</div>
<?php }?>
</div>
<div class="col-sm-4">
<div class="form-group">
<label for="">Name of the company <space class="mandatory">*</space></label>
<input type="text" required placeholder="Company Name" class="form-control" name="company" value="<?php echo $this->data['input_data']['company'] ?? ''; ?>">
</div>
</div>
<div class="col-sm-4">
<div class="form-group">
<input type="hidden" placeholder="Type of Industry name" class="form-control" id="sector_name" name="sector_name" value="">
<label for="">Type of Industry <space class="mandatory">*</space></label>
<select required name="sectorid" id="sectorid" class="form-control">
<option value="">Select</option>
<?php foreach($sector as $value){
$selected = ($this->data['input_data']['type_industry'] == $value['sectorid'] ) ? 'selected="selected"' : '';
echo '<option value="'.$value['sectorid'].'" '.$selected.'>'.$value['name'].'</option>';
} ?>
<!-- <option value="">Sector A</option>
<option value="">Sector B</option>
<option value="">Sector C</option> -->
</select>
<!-- <input type="text" placeholder="Type of Industry" class="form-control" name="type_industry" value="<?php echo $this->data['input_data']['type_industry'] ?? ''; ?>"> -->
</div>
</div>
<div class="col-sm-4">
<div class="form-group">
<label for="">Name of Authorized Representative <space class="mandatory">*</space></label>
<input type="text" required placeholder="Authorized Representative Name" class="form-control" name="name" value="<?php echo $this->data['input_data']['name'] ?? ''; ?>">
</div>
</div>
<div class="col-sm-4">
<div class="form-group">
<label for="">Designation <space class="mandatory">*</space></label>
<input type="text" required placeholder="Designation" class="form-control" name="designation" value="<?php echo $this->data['input_data']['designation'] ?? ''; ?>">
</div>
</div>
<div class="col-sm-4">
<div class="form-group">
<label for="">Mobile Number of Authorized Representative <space class="mandatory">*</space></label>
<input type="number" required placeholder="Representative Mobile Number" class="form-control" id="fieldSelectorId" name="company_phone" value="<?php echo $this->data['input_data']['company_phone'] ?? ''; ?>">
</div>
</div>
<div class="col-sm-4">
<div class="form-group">
<label for="">Email ID of Authorized Representative <space class="mandatory">*</space></label>
<input type="email" required placeholder="Email" class="form-control" name="email" value="<?php echo $this->data['input_data']['email'] ?? ''; ?>">
</div>
</div>
<div class="col-sm-4">
<div class="form-group">
<label for="">Nature of Project <space class="mandatory">*</space></label>
<input type="hidden" placeholder="Nature of Project Name" class="form-control" id="nature_project_name" name="nature_project_name" value="">
<select required name="nature_project" id="nature_project" class="form-control">
<option value="">Select</option>
<?php foreach($nature_project as $nvalue){
$nature_project_input = $this->data['input_data']['nature_project'] ?? 0;
$selected = ( $nature_project_input == $nvalue['id'] ) ? 'selected="selected"' : '';
echo '<option value="'.$nvalue['id'].'" '.$selected.'>'.$nvalue['name'].'</option>';
}?>
</select>
</div>
</div>
<!-- TODO : if other option selected from above dropdown (Nature of Project) then other input below block should display -->
<div class="col-sm-6" style="display:none">
<div class="form-group">
<label for="">Other please specify</label>
<input type="text" placeholder="others" class="form-control" name="others" value="">
</div>
</div>
<div class="col-sm-12">
<div class="form-group">
<input type="checkbox" name="mec" value="1"> We have gone through the minimum eligibility criteria for BEE's Facilitation Centre. <a target="_blank" href="https://www.adeetie.beeindia.gov.in/uploads/upcoming-trinings-pdf/da224175e12eef67fefc9f08763fe712.pdf"><p style="text-decoration: underline;">Check Minimum Eligibility Criteria</p></a>
</div>
</div>
<div class="col-sm-4" style="display:none;">
<div class="g-recaptcha" data-sitekey="6Ldi9IIkAAAAAJRok3IGTI96Yyp0u2Xi8DPMVZ3m"></div>
<?php echo !empty($this->session->flashdata('message')) ? $this->session->flashdata('message'): ''; ?>
<div> </div>
</div>
<div class="col-sm-12" style="text-align: center;">
<div class="form-group">
<button class="btn btn-default" type="submit">Register</button>
</div>
</div>
<?php echo form_close();?>
</div>
</div>
<script src="https://www.google.com/recaptcha/api.js" async defer></script>