47 lines
1.2 KiB
HTML
47 lines
1.2 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>User Profile</h1>
|
|
<h2>Welcome back <italic>{{ username }}</italic></h2>
|
|
</div>
|
|
|
|
<div class="content">
|
|
<h2 class="content-subhead">Congratulations</h2>
|
|
<p>
|
|
Here's your second flag: <strong>{{ flag2 }}</strong>
|
|
</p>
|
|
</div>
|
|
<div class="content">
|
|
<h2 class="content-subhead">User options</h2>
|
|
<p>
|
|
Unfortunately we have yet to implement user functionalities. If you are an admin, please login as such to change site configuration.
|
|
</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<script src="/static/ui.js"></script>
|
|
|
|
</body>
|
|
</html>
|