36 lines
823 B
HTML
36 lines
823 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
|
|
<title>HM0x14 - WE(P)B | Home</title>
|
|
|
|
<link href="static/min.css" rel="stylesheet" type="text/css">
|
|
|
|
<style>
|
|
.hero {
|
|
background: #eee;
|
|
padding: 20px;
|
|
border-radius: 10px;
|
|
margin-top: 1em;
|
|
}
|
|
|
|
.hero h1 {
|
|
margin-top: 0;
|
|
margin-bottom: 0.3em;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
{% include 'navbar.html' %}
|
|
<div class="container">
|
|
<div class="hero">
|
|
<h1>Welcome</h1>
|
|
<p>I learnt WEP is so secure that i decided to use it for my session management, but why waste 24bit for the IV? 8 should be enough, no user is going to do that many requests anyway...</p>
|
|
<a class="btn btn-b" href="/register">Register</a>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|