16
16
<?php if ($ this ->session ->flashdata ('success ' )) : ?>
17
17
<span style="line-height:3" class="badge badge-success"><?php echo $ this ->session ->flashdata ('success ' ); ?> </span>
18
18
<?php endif ; ?>
19
- <div class="card-body">
20
- <h6 class="card-title">ADD EVENT PARTICIPANT</h6>
21
- <h6 class="my-1">Event Name : <?php echo ($ eventDetails ->event_title ) ?> </h6>
22
- <?php echo form_open_multipart ('admin/add_stories ' ); ?>
23
- <div class="forms-sample">
24
- <div class="form-group">
25
- <label for="payment_id">Enter payment id (If you are a 'ELGIBLE' user for 'FREE' registration please type 'NA' )</label>
26
- <input type="text" class="form-control" name="payment_id" id="payment_id" placeholder="Payment ID" required>
27
- </div>
28
- <p style="color: blue;"><b>Please fill your teammates email id (if any)</b></p>
29
- <input type="email" class="form-control mb-1" value="<?= $ _SESSION ['email ' ] ?> " readonly>
30
- <span id="addMember">
31
- </span>
32
-
33
- <button type='button' onclick="addMember()" class='btn btn-primary'>Add Member</button>
34
- <button type="submit" class="btn btn-primary mr-2">Submit</button>
35
- <button type="reset" class="btn btn-light">Reset</button>
19
+ <?php if ($ eventDetails ->is_reg_open == 1 ) { ?>
20
+ <div class="card-body">
21
+ <h6 class="card-title">ADD EVENT PARTICIPANT</h6>
22
+ <h6 class="my-1">Event Name : <?php echo ($ eventDetails ->event_title ) ?> </h6>
23
+ <form method="post" action="<?= base_url () ?> admin/event_registration">
24
+ <div class="forms-sample">
25
+ <?php if ($ eventDetails ->is_payment_id == 1 ) { ?>
26
+ <div class="form-group">
27
+ <label for="payment_id">Enter payment id (If you are a 'ELGIBLE' user for 'FREE' registration please type 'NA' )</label>
28
+ <input type="text" class="form-control" name="payment_id" id="payment_id" placeholder="Payment ID" required>
29
+ </div>
30
+ <?php } ?>
31
+ <?php if ($ eventDetails ->is_file_submission == 1 ) { ?>
32
+ <div class="form-group">
33
+ <label for="file_link">Please type your abstract/file link here</label>
34
+ <input type="text" class="form-control" name="file_link" id="file_link" placeholder="Please type your abstract/file link here" required>
35
+ </div>
36
+ <?php } ?>
37
+
38
+ <?php if ($ eventDetails ->is_team == 1 ) { ?>
39
+ <p style="color: blue;"><b>Team Lead email ID</b></p>
40
+ <input type="email" placeholder="Enter Team Lead Email ID" class="form-control mb-1" name="team_lead_email_id">
41
+ <p style="color: blue;"><b>Add team members (if any)</b></p>
42
+ <span id="addMember">
43
+ </span>
44
+ <button type='button' onclick="addMember()" class='btn btn-primary'>Add Member</button>
45
+ <?php } else { ?>
46
+ <p style="color: blue;"><b>Participant Email ID</b></p>
47
+ <input type="email" class="form-control mb-1" name="team_lead_email_id">
48
+ <?php } ?>
49
+ <input name="event_id" type="hidden" value="<?= $ eventDetails ->event_id ?> ">
50
+ <br><br>
51
+ <button type="submit" class="btn btn-primary mr-2">Submit</button>
52
+ <button type="reset" class="btn btn-light">Reset</button>
53
+ </div>
54
+ </form>
36
55
</div>
37
- </form>
38
- </div>
56
+ <?php } else { ?>
57
+ <h5 style="color: red;"><b>Registration Closed</b></h5>
58
+ <?php } ?>
39
59
</div>
40
60
</div>
41
61
</div>
42
62
43
- <?php } else { ?>
63
+ <?php } else { ?>
44
64
<h5 style="color:red">You are not authorized to access this page</h5>
45
65
<?php } ?>
46
66
</div>
47
67
48
68
<script>
49
- function addMember() {
50
- $("#addMember").append('<span class="removeClass" style="display:inline-flex;width:100%;"><input type="email" name="team_email[]" placeholder="Enter email id" class="form-control mb-1"> <button type="button" onclick="removeInputField(this);" class="btn btn-danger"><i class="fa fa-times"></i></button></span>');
51
- }
69
+ function addMember() {
70
+ $("#addMember").append('<span class="removeClass" style="display:inline-flex;width:100%;"><input type="email" name="team_email[]" placeholder="Enter email id" class="form-control mb-1"> <button type="button" onclick="removeInputField(this);" class="btn btn-danger"><i class="fa fa-times"></i></button></span>');
71
+ }
52
72
53
- function removeInputField(selectedField) {
54
- selectedField.closest('.removeClass').remove();
55
- }
73
+ function removeInputField(selectedField) {
74
+ selectedField.closest('.removeClass').remove();
75
+ }
56
76
</script>
0 commit comments