-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathciphers.php
More file actions
executable file
·27 lines (27 loc) · 901 Bytes
/
Copy pathciphers.php
File metadata and controls
executable file
·27 lines (27 loc) · 901 Bytes
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
<?php include'header.php'; ?>
<!-- Main -->
<header class="major">
<h2>Ciphers & Algorithms</h2>
<p>Select any cipher/Algorithm to get Started! </p>
</header>
<div class="container">
<div class="row">
<div class="4u">
<section>
<h3>Ciphers</h3>
<ul class="alt">
<?php echo getCipherList(); ?>
</ul>
</section>
</div>
<div class="4u">
<section>
<h3>Algorithms</h3>
<ul class="alt">
<?php echo getAlgoList(); ?>
</ul>
</section>
</div>
</div>
</div>
<?php include'footer.php'; ?>