You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
56 lines
2.1 KiB
56 lines
2.1 KiB
<!DOCTYPE html> |
|
<html lang="en"> |
|
<head> |
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"> |
|
|
|
<title>SuperX -> Budget Overview</title> |
|
|
|
<link href="{{request.static_url('superx_budget.pyramid:static/img/favicon.ico')}}" type="image/x-icon" rel="shortcut icon"> |
|
|
|
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css" integrity="sha384-Vkoo8x4CGsO3+Hhxv8T/Q5PaXtkKtu6ug5TOeNV6gBiFeWPGFN9MuhOf23Q9Ifjh" crossorigin="anonymous"> |
|
<link rel="stylesheet" href="{{request.static_url('superx_budget.pyramid:static/style.css')}}" type="text/css" media="screen" /> |
|
</head> |
|
<body> |
|
<div class="container"> |
|
|
|
<div class="row mb-4"> |
|
<div class="col"> |
|
<header> |
|
<nav class="navbar navbar-expand navbar-light bg-light"> |
|
<span class="navbar-brand bg-info p-3 rounded">Budget Overview From SuperX</span> |
|
</nav> |
|
</header> |
|
</div> |
|
</div> |
|
|
|
<div class="row"> |
|
<div class="col"> |
|
<h2 class="mt-3 mb-4">Please Log In</h2> |
|
<form class="form" method="POST" action="/login"> |
|
<p> |
|
<div class="input-group"> |
|
<label for="password" class="sr-only">Password:</label> |
|
<input type="passwort" id="password" name="password" class="form-control {% if error %}is-invalid{% endif %}" required="required" placeholder="Password"> |
|
<div class="invalid-feedback">Password is invalid</div> |
|
</div> |
|
</p> |
|
<p> |
|
<button type="submit" name="submit" value="login" class="btn btn-primary">log in</button> |
|
</p> |
|
</form> |
|
</div> |
|
<div class="col"></div> |
|
<div class="col"></div> |
|
</div> |
|
|
|
<div class="row mt-3"> |
|
<div class="col"> |
|
<footer> |
|
<p class="bg-light p-3">Any problems or questions? Please contact <a href="https://wiki.cpi.imtek.uni-freiburg.de/HolgerFrey">Holgi</a>.</p> |
|
</footer> |
|
</div> |
|
</div> |
|
|
|
</div></div></div> |
|
</body> |
|
</html>
|
|
|