Spaces:
Sleeping
Sleeping
File size: 795 Bytes
9697624 79d7ca9 9697624 5b1d21d 9697624 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 |
<html>
<head>
<title>EduConnect Administration - login page</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="/static/css/mvp.css" rel="stylesheet" media="screen">
</head>
<body>
<div class="container">
<h1>Please login</h1>
<br>
<form action="/admin/login" method="post">
<input type="text" placeholder="Username" name="username" value="{{
request.form.username }}">
<input type="password" placeholder="Password" name="password" value="{{
request.form.password }}">
<input class="btn btn-default" type="submit" value="Login">
</form>
{% if error %}
<p class="error"><strong>Error:</strong> {{ error }}
{% endif %}
</div>
</body>
</html> |