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
|
<?php include_once('templates/top.php'); ?> <section id="page-title" style="background-image: url('<?php echo assets_url('main/img/lady_gold_2018.jpg'); ?>');" class="background-title"> <div class="container clearfix"> <h1><?= __('Online nomination') ?></h1> <ol class="breadcrumb"> <li><a href="#"><?= __('Home') ?></a></li> <li class="active"><?= __('Introduction') ?></li> </ol> </div> </section>
<!-- Content ============================================= --> <section id="content"> <div class="content-wrap"> <div class="container clearfix">
<div class="row clearfix">
<div class="col-md-12 topmargin-md bottommargin-lg" style="margin-top: 20px !important;">
<div class="heading-block fancy-title nobottomborder title-bottom-border"> <h3 class="inline-block"><span><?= __('Nomination Deadline') ?></span></h3> </div>
<ul style="margin-left: 20px;"> <li><?= __('August 9, 2019, Friday') ?></li> </ul>
<div class="heading-block fancy-title nobottomborder title-bottom-border"> <h3 class="inline-block"><span><?= __('Important Notice') ?></span></h3> </div> <ul style="margin-left: 20px;"> <li><?= __('Auto email confirmation will be received once nomination form is submitted within the day. ') ?></li> <li><?= __('Nominee will be requested to provide the entrant information and supporting documents when the nomination is received.') ?></li> <li><?= __('The Organisers reserve the rights to amend any selection rules and criteria as deemed necessary. In case of any conflicts between the Chinese & English versions, the Chinese version shall prevail. ') ?></li> </ul>
<div style="text-align: center;margin-top: 100px;"> <a href="<?php echo front_url('application/guideline/nominee'); ?>"> <button type="button" class="btn btn-default" style="font-size: 20px;"><?= __('Nominee Form'); ?></button> </a> <a href="<?php echo front_url('application/guideline/nominator'); ?>"> <button type="button" class="btn btn-default" style="font-size: 20px;"><?= __('Nominator Form'); ?></button> </a> </div> </div>
<?php include_once('templates/bottom.php'); ?>
|