-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
92 lines (86 loc) · 4.26 KB
/
index.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>All Task | Heroku</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="icon" href="assets/html/imgs/shuttle.png" type="image/gif" sizes="32x32">
<!-- g-fonts -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;700&display=swap" rel="stylesheet">
<!-- Bootstrap CSS -->
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-F3w7mX95PdgyTmZZMECAngseQB83DfGTowi0iMjiWaeVhAn4FJkqJByhZMI3AhiU" crossorigin="anonymous">
<!-- jQuery -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<!-- Styles CSS -->
<link type="text/css" rel="stylesheet" href="assets/html/styles.css">
</head>
<body>
<div class="container">
<h1 class="h1 text-center" style="
margin-top: 30px">WEB TECHNOLOGIES</h1>
<h3 class="h3 text-center">All Task List</h3>
<br>
<table class='table table-bordered table-condensed table-striped table-hover'>
<thead class="table-primary">
<tr>
<th scope="col"># S/N</th>
<th>Date</th>
<th>Task</th>
<th class="text-center">Status</th>
</tr>
</thead>
<tbody>
<tr class="table-row" onclick="window.open('https://github-actions-task.herokuapp.com/task1/form.php', '_blank');">
<th scope="row">1</th>
<td>2021/09/25</td>
<td>Php Form Validation</td>
<td class="text-center">Done</td>
</tr>
<tr class="table-row" onclick="window.open('https://github-actions-task.herokuapp.com/task2/form.php', '_blank');">
<th scope="row">2</th>
<td>2021/10/10</td>
<td>Php Form Validation with JSON Data</td>
<td class="text-center">Done</td>
</tr>
<tr class="table-row" onclick="window.open('https://github-actions-task.herokuapp.com/LabExam/index.php', '_blank');">
<th scope="row">3</th>
<td>2021/10/19</td>
<td>MID Lab Exam</td>
<td class="text-center">Done</td>
</tr>
<tr class="table-row" onclick="window.open('https://github-actions-task.herokuapp.com/FTTask1/index.php', '_blank');">
<th scope="row">4</th>
<td>2021/11/14</td>
<td>Final Task 1</td>
<td class="text-center">Done</td>
</tr>
<tr class="table-row" onclick="window.open('https://github-actions-task.herokuapp.com/FTTask2/form.php', '_blank');">
<th scope="row">5</th>
<td>2021/11/28</td>
<td>Final Task 2</td>
<td class="text-center">Done</td>
</tr>
<tr class="table-row" onclick="window.open('https://github-actions-task.herokuapp.com/FTLabExam/index.php', '_blank');">
<th scope="row">5</th>
<td>2021/12/05</td>
<td>Final Lab Exam</td>
<td class="text-center">Done</td>
</tr>
</tbody>
</table>
</div>
<!-- All Js Files -->
<!-- Popper -->
<script src="https://cdn.jsdelivr.net/npm/@popperjs/[email protected]/dist/umd/popper.min.js" integrity="sha384-IQsoLXl5PILFhosVNubq5LC7Qb9DXgDA9i+tQ8Zj3iwWAwPtgFTxbJ8NT4GN1R8p" crossorigin="anonymous">
</script>
<!-- Bootstrap -->
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.min.js" integrity="sha384-skAcpIdS7UcVUC05LJ9Dxay8AXcDYfBJqt1CJ85S/CFujBsIzCIv+l9liuYLaMQ/" crossorigin="anonymous">
</script>
<!-- Main -->
<script type="text/javascript" src="assets/html/main.js"></script>
</body>
</html>