This repository was archived by the owner on Jan 26, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrules.php
More file actions
executable file
·47 lines (36 loc) · 1.83 KB
/
rules.php
File metadata and controls
executable file
·47 lines (36 loc) · 1.83 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="description" content="">
<meta name="author" content="">
<title>Computer Science - CTF</title>
<!-- Bootstrap core CSS -->
<link href="vendor/bootstrap/css/bootstrap.min.css" rel="stylesheet">
</head>
<body>
<?php
include "php/nav.php";
?>
<!-- Page Content -->
<div class="container">
<div class="row">
<div class="col-lg-12 text-center">
<h1 class="mt-5">Rules</h1>
<p class="lead">On this page we will just go over a few rules, once read you can sign up to the leaderboard system and then go ahead with the challenges.</p>
<ul class="list-group-flush">
<li class="list-group-item">Do not attempt to hack or attack the domain/server that this website is on. This is just a helpful little thing I cooked up to make things easier for you.</li>
<li class="list-group-item">You can use any online resource you think could be helpful for this competition as long as other participants would have equal access. (So no paid services, books or otherwise paywell blocked content)</li>
<li class="list-group-item">You will have a max of 4 hours to complete as many tasks as possible </li>
<li class="list-group-item">Teams have a max number of 3, however you can compete with less. </li>
<li class="list-group-item"> When signing up do not use any passwords you use for other platforms. This is a quick and dirty web app.</li>
</ul>
</div>
</div>
</div>
<!-- Bootstrap core JavaScript -->
<script src="vendor/jquery/jquery.slim.min.js"></script>
<script src="vendor/bootstrap/js/bootstrap.bundle.min.js"></script>
</body>
</html>