shoplist2/templates/auth.html
2020-01-23 03:18:24 +11:00

23 lines
850 B
HTML

{% include "header.html" %}
<body>
<h1 class="container" style="text-align: center">{{ data["title"] }}</h1>
<div class="container">
<form style="text-align: center" action="/post" method="POST">
<input type="password" name="password"/>
<input class="btn btn-secondary" type="submit" name="loginform" value="Login" />
</form>
</div>
<!-- jQuery library -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<!-- Popper JS -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.16.0/umd/popper.min.js"></script>
<!-- Latest compiled JavaScript -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.4.1/js/bootstrap.min.js"></script>
</body>
</html>