-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathparticipants.php
102 lines (90 loc) · 3.43 KB
/
participants.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
<?php require_once('header.php'); ?>
<div id="banner-content" class="row clearfix">
<h1 class="team3_heading"> Viewing all Participants</h1>
<table class="table user-list" width="80%">
<thead>
<tr>
<th><span></span> S/N</th>
<th><span class="fa fa-user"></span> PARTICIPANT</th>
<th><span class="fa fa-users"></span> TEAM</th>
</tr>
</thead>
<tbody>
<!--
each Participant Starts
-->
<tr>
<td class="team3_center_td"> 1.</td>
<td>
<img src="https://bootdey.com/img/Content/avatar/avatar1.png" alt="">
<a href="#" class="user-link">Emmanuel Joseph</a>
<span class="user-subhead">Email: jekayode@live.com</span>
</td>
<td>
Team 3
</td>
</tr>
<!--
Each Participant Ends
-->
=======
<!--
each Participant Starts
-->
<tr>
<td class="team3_center_td"> 2.</td>
<td>
<img src="https://bootdey.com/img/Content/avatar/avatar1.png" alt="">
<a href="#" class="user-link">Abdulsamad Aliyu</a>
<span class="user-subhead">Email: abdulsamadaliyu17@gmail.com</span>
</td>
<td>
Team 3
</td>
</tr>
<!--
Each Participant Ends
-->
<!--
each Participant Starts
-->
<tr>
<td class="team3_center_td"> 2.</td>
<td>
<img src="https://bootdey.com/img/Content/avatar/avatar1.png" alt="">
<a href="#" class="user-link">Abdulsamad Aliyu</a>
<span class="user-subhead">Email: abdulsamadaliyu17@gmail.com</span>
</td>
<td>
Team 3
</td>
</tr>
<!--
Each Participant Ends
-->
<!--
<tr>
<td class="team3_center_td">#SERIAL_NUMBER#</td>
<td>
<img src="IMAGE_LINK" alt="">
<a href="#" class="user-link">#PARTICIPANT_NAME#</a>
<span class="user-subhead">Email: #PARTICIPANT_EMAIL#</span>
</td>
<td>
Team #TEAM_NUMBER#
</td>
</tr>
-->
</tbody>
<!--
GUIDELINES FOR ADDING DETAILS TO PARTICIPANTS TABLE
- Uncomment the code block in the comment above, to maintain uniformity
- Replace the placeholder(The text which are enclosed with hashtags i.e #...#) with your details
- Your image should be stored in the image folder of the repo
- If you do not have an available image, use the default image, using the link 'http://s3.amazonaws.com/37assets/svn/765-default-avatar.png'
- Make sure you do not modify information of other participants
- Pull the repo, before pushing it, inorder to prevent conflicts
-->
</table>
</div>
<?php require_once('footer.php'); ?>