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
|
<?php $page_setting['title'] = __('Awards') . ' | ' . __('GBA Outstanding Women Entrepreneur Awards {%year%}', ['year' => $page_setting['year']]); ?> <?php include_once('templates/top.php'); ?>
<section id="page-title" style="background-image: url('<?php echo assets_url('main/img/content/award/lady_gold_2018.jpg'); ?>');" class="background-title"> <div class="container clearfix"> <h2 class="colorFFF m0"><?php echo $certain['name_' . get_lang()]; ?></h2> <ol class="breadcrumb"> <li><a href="#"><?php echo __('Home'); ?></a></li> <li class="active"><?php echo __('Awards'); ?></li> </ol> </div> </section>
<!-- content start --> <section id="content"> <div class="content bg_section_contain" style="padding-bottom:0;background-image: url('<?php echo assets_url('main/img/content/background_01.jpg'); ?>');">
<div class="container clearfix ">
<div class="row clearfix">
<div class="col-md-12 topmargin-md bottommargin-lg">
<div class="heading-block fancy-title nobottomborder title-bottom-border"> <h3 class="inline-block"><span><?= __('Eligibility of Nominee') ?></span></h3> </div> <p><?php echo __('The candidate must be a current corporate executive or senior management with leading position in the company for more than 3 years'); ?></p> <p><?php echo __('The candidate has to have at least one or more nominators who are social elite, corporate executive or senior management of companies'); ?></p> <?php if ($category_code == 'GBA-Entrepreneur') { ?> <p><?php echo __('Members from the judging panel of the event, the organizers and their employees and their family members are not eligible to participate the GBA Outstanding Women Entrepreneur Awards 2019.'); ?></p> <?php } else if ($category_code == 'GBA-Family') { ?> <p><?php echo __('The candidate's present company must be a family-owned and multi-generations inheritance business where the family members hold more than 20% equity'); ?></p> <p><?php echo __('Members from the judging panel of the event, the organizers and their employees and their family members are not eligible to participate the GBA Outstanding Women Entrepreneur Awards 2019.'); ?></p> <?php } else if ($category_code == 'GBA-YoungWomen') { ?> <p><?php echo __('Age of candidate must below 45 (i.e. Born on or after 10 Aug 1974)'); ?></p> <p><?php echo __('Members from the judging panel of the event, the organizers and their employees and their family members are not eligible to participate the GBA Outstanding Women Entrepreneur Awards 2019.'); ?></p> <?php } ?>
<div class="heading-block fancy-title nobottomborder title-bottom-border"> <h3 class="inline-block"><span><?= __('Eligibility of Nominator') ?></span></h3> </div> <p><?php echo __('The nominator must be age of 21 or above, representing or former senior management in business communities / public sector / private corporation, or social elites.'); ?></p> <p><?php echo __('Each nominator can nominate more than one candidate (self-nomination will not be accepted)'); ?></p>
<div class="heading-block fancy-title nobottomborder title-bottom-border"> <h3 class="inline-block"><span><?php echo __('How to Enter'); ?></span></h3> </div> <p><?php echo __('To enter a submission, please click the link of <span style="color:red">Submission Form</span> below, then fill out the required information and submit your entry and supporting document. Your nominator will then be contacted for endorsement.'); ?></p> <p><?php echo __('To nominate an individual, please click the link of <span style="color:red">Nomination Form</span> below, then fill out the entrant details field and submit. The nominee will then be contacted and invited to put forward a submission. (Note: Each nomination form is valid for 1 entry only. If you are nominating several candidates, please enter each entry separately.)'); ?></p>
<div class="heading-block fancy-title nobottomborder title-bottom-border"> <h3 class="inline-block"><span><?php echo __('Nomination deadline'); ?></span></h3> </div> <p><?php echo __('August 9, 2019 (Friday)'); ?></p> <a href="<?php echo front_url('application/guideline/nominee'); ?>" target="_blank" class="button button-dark button-rounded index_en_dlbtn" style="background-color: #C01450 ;"><?php echo __('Submission Form'); ?></a> <a href="<?php echo front_url('application/guideline/nominator'); ?>" target="_blank" class="button button-dark button-rounded index_en_dlbtn" style="background-color: #C01450 ;"><?php echo __('Nomination Form'); ?></a>
</div>
</div>
</div>
</div> </section><!-- #content end --> <!-- content end -->
<?php include_once('templates/bottom.php'); ?> <script type="text/javascript"> $('nav ul > li.lv01:nth-child(2)').addClass('current'); </script>
|