forked from hackertron/CryptSteg
-
Notifications
You must be signed in to change notification settings - Fork 0
/
l1.php
90 lines (77 loc) · 2.62 KB
/
l1.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
<?php
require_once 'auth.php';
if (!$loggedin) header("Location:login.php");
?>
<!DOCTYPE HTML>
<html>
<head>
<title>CryptSteg </title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="stylesheet" href="assets/css/main.css" />
</head>
<body>
<div id="page-wrapper">
<!-- Header -->
<header id="header">
<h1><a href="index.html">CryptSteg</a> by ARCADE</h1>
<nav id="nav">
<ul>
<li><a href="index.html">Home</a></li>
<li>
<a href="#" class="icon fa-angle-down">Menu</a>
<ul>
<li><a href="generic.html">help</a></li>
<li><a href="contact.html">Contact</a></li>
<li><a href="elements.html">forum</a></li>
<li>
<a href="#">Levels</a>
<ul>
<li><a href="#">Level 1</a></li>
<li><a href="#">Level 2</a></li>
<li><a href="#">Level 3</a></li>
<li><a href="#">Level 4</a></li>
<li><a href="#">Level 5</a></li>
<li><a href="#">Level 6</a></li>
<li><a href="#">Level 7</a></li>
<li><a href="#">Level 8</a></li>
</ul>
</li>
</ul>
</li>
<li><a href="signup.html" class="button">Sign Up</a></li>
</ul>
</nav>
</header>
<!-- Main -->
<section id="main" class="container">
<section class="box special">
<header class="major">
<h2> An introduction </h2>
<p>MXVW WHVWLQJ BRX RXW</p>
<div id="spoiler" style="display:none"> caesar
</div>
<button title="Click to show/hide content" type="button" onclick="if(document.getElementById('spoiler') .style.display=='none') {document.getElementById('spoiler') .style.display=''}else{document.getElementById('spoiler') .style.display='none'}">HINT</button>
</header>
</section>
<form action="r1.php" method="POST">
<div class="row uniform 50%">
<div class="8u 12u(mobilep)">
<input type="text" name="l1" id="email" placeholder="answer" />
</div>
<div class="4u 12u(mobilep)">
<input type="submit" value="submit" class="fit" />
</div>
</div>
</form>
</div>
<!-- Scripts -->
<script src="assets/js/jquery.min.js"></script>
<script src="assets/js/jquery.dropotron.min.js"></script>
<script src="assets/js/jquery.scrollgress.min.js"></script>
<script src="assets/js/skel.min.js"></script>
<script src="assets/js/util.js"></script>
<!--[if lte IE 8]><script src="assets/js/ie/respond.min.js"></script><![endif]-->
<script src="assets/js/main.js"></script>
</body>
</html>