hm0x14-ctf/evilcorp/web/templates/index.html
2019-05-14 16:29:52 +02:00

42 lines
1.1 KiB
HTML

<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="A layout example with a side menu that hides on mobile, just like the Pure website.">
<title>Evil Corp | Home</title>
<link rel="stylesheet" href="/static/pure.css">
<link rel="stylesheet" href="/static/menu.css">
</head>
<body>
<div id="layout">
{% include 'nav.html' %}
<div id="main">
<div class="header">
<h1>Welcome to Evil Corp</h1>
<h2>We are a totally-legit, zero-bullshit company</h2>
</div>
<div class="content">
<h2 class="content-subhead">What's this site for?</h2>
<p>
This is out completely secure company website. Valid credentials are required to access most resources, but you can still visit our <a href="/news">News</a> area freely.
As in any other CMS, admins have superpowers: they can, for example, read super secret flags!
</p>
</div>
</div>
</div>
<script src="/static/ui.js"></script>
</body>
</html>