-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmybreakout.php
More file actions
93 lines (61 loc) · 1.96 KB
/
Copy pathmybreakout.php
File metadata and controls
93 lines (61 loc) · 1.96 KB
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
<?php
error_reporting(E_ALL);
require_once('partials/header.php');
?>
<!-- from here till topmost top as header.php-->
<div class="container col-md-10 py-5" style="background-color: white;">
<?php
require('partials/menu.php');
?>
<div class="content">
<div class="row g-5">
<div class="col-md-12">
<h3 class="pb-4 mb-4 fst-italic border-bottom">
Register for Breakout Sessions (senior dev)
</h3>
<form action="process_registration.php" method="post">
<table class="table table-borderless">
<thead>
<tr>
<th scope="col"> <input class="form-check-input border-dark" type="checkbox" value="" id="all"> </th>
<th scope="col">Title</th>
<th scope="col">Category</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row"> <input class="form-check-input border-dark" type="checkbox" value="" id=""></th>
<td> Authorization and Authentication</td>
<td>Senior Dev</td>
</tr>
<tr>
<th scope="row"><input class="form-check-input border-dark" type="checkbox" value="" id=""></th>
<td> Flask vs Laravel</td>
<td>General</td>
</tr>
<tr>
<th scope="row"><input class="form-check-input border-dark" type="checkbox" value="" id=""></th>
<td>Secure Coding</td>
<td>Senior Dev</td>
</tr>
</tbody>
</table>
<div class="row">
<div class="col-md-11">
<div style="text-align:right">
<button class="btn custom-btn noround">Cancel</button>
<button class="btn btn-dark noround">Continue</button>
</div>
</div>
</div>
</form>
</div>
</div>
</div>
</div>
<!-- From here till end as footer.php-->
<!-- FOOTER -->
<?php
error_reporting(E_ALL);
require('partials/footer.php');
?>