44 lines
1.0 KiB
HTML
44 lines
1.0 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
|
|
<title>HM0x14 - WE(P)B | Login</title>
|
|
|
|
<link href="static/min.css" rel="stylesheet" type="text/css">
|
|
|
|
<style>
|
|
input {
|
|
border: 1px solid #ccc;
|
|
box-shadow: inset 0 1px 3px #ddd;
|
|
border-radius: 2px;
|
|
vertical-align: middle;
|
|
-webkit-box-sizing: border-box;
|
|
-moz-box-sizing: border-box;
|
|
box-sizing: border-box;
|
|
width: 240px;
|
|
max-width: 100%;
|
|
padding: 0.5em 0.6em;
|
|
margin-bottom: 0.5em;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
{% include 'navbar.html' %}
|
|
<div class="container">
|
|
<div class="row">
|
|
<div class="col c6">
|
|
<h1>Login</h1>
|
|
<hr>
|
|
<form method="post" action="">
|
|
<input type="text" name="username" id="username" placeholder="Username">
|
|
<input type="password" name="password" id="password" placeholder="Password">
|
|
<input type="submit" class="btn btn-a btn-sm smooth" value="Login">
|
|
</form>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|