1
Fork 0
mirror of https://github.com/Quackster/Havana.git synced 2025-07-03 21:27:46 +00:00
Havana/tools/www-tpl/default-en/housekeeping/login.tpl

46 lines
1.9 KiB
Smarty
Raw Normal View History

2022-09-03 15:05:14 +10:00
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="description" content="">
<meta name="author" content="">
<link rel="icon" href="../../favicon.ico">
<title>{{ site.siteName }}: Housekeeping</title>
<link href="{{ site.staticContentPath }}/public/hk/css/bootstrap.min.css" rel="stylesheet">
<link href="{{ site.staticContentPath }}/public/hk/css/bootstrap.login.override.css" rel="stylesheet">
<link href="{{ site.staticContentPath }}/public/hk/css/sticky-footer.css" rel="stylesheet">
2022-09-03 15:05:14 +10:00
</head>
<body>
<div class="container">
<div class="mt-1">
<h1>Housekeeping</h1>
</div>
{% include "housekeeping/base/alert.tpl" %}
<div class="login-image">
<p style="margin-left:0">Please sign in to access the housekeeping</p>
<form class="form-signin" action="/{{ site.housekeepingPath }}/login" method="post">
<label for="inputUsername" class="sr-only">Username</label>
<input type="text" name="hkusername" id="inputUsername" class="form-control" placeholder="Username" required autofocus>
<label for="inputPassword" class="sr-only">Password</label>
<input type="password" name="hkpassword" id="inputPassword" class="form-control" placeholder="Password" required>
<button class="btn btn-lg btn-primary btn-block" type="submit">Sign in</button>
<div class="checkbox">
<label>
<!--<input type="checkbox" value="remember-me"> Remember me-->
<p style="font-size; 5px">Oops, <a href="{{ site.sitePath }}">take me back please!</a></p>
</label>
</div>
</form>
</div>
</div>
<footer class="footer">
<div class="container">
<span class="text-muted">&copy; Copyright 2018 - Alex Miller</span>
</div>
</footer>
<script src="{{ site.staticContentPath }}/public/hk/js/ie10-viewport-bug-workaround.js"></script>
2022-09-03 15:05:14 +10:00
</body>
</html>