1
0
Fork 1
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.

28 lines
773 B

<!DOCTYPE html>
<html lang="en">
<head>
<title>Login</title>
<link rel="stylesheet" href="/static/morsel.css" />
<link rel="stylesheet" href="/static/theme.css" />
</head>
<body>
<div class="login_panel panel">
<h3>Welcome back!</h3>
<hr/>
{% if error %}
<div class="error{% if 'Success' in error %} success{%endif%}">
{{ error }}
</div>
{% endif %}
<form action="/login" method="POST">
<input type="text" name="username" placeholder="Username">
<input type="password" name="password" placeholder="Password">
<div class="buttons">
<a href="/reg" class="abtn">Register</a>
<input type="submit" value="Log In" />
</div>
</form>
</div>
</body>
</html>