2022-08-26 19:39:25 +03:00
|
|
|
|
|
|
|
</html>
|
2022-03-13 16:16:46 +03:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="en">
|
|
|
|
|
2022-08-26 19:39:25 +03:00
|
|
|
<%- include("extra/meta", {title: "Log in!" }) %>
|
2022-03-13 16:16:46 +03:00
|
|
|
|
|
|
|
|
2022-08-26 19:39:25 +03:00
|
|
|
<body style="text-align: center;">
|
|
|
|
<%- include("extra/navbar") %>
|
2022-03-13 16:16:46 +03:00
|
|
|
|
2022-08-26 19:39:25 +03:00
|
|
|
<h1 style="color: #4d18e6;">Login</h1>
|
2022-03-13 16:16:46 +03:00
|
|
|
|
2022-08-26 19:39:25 +03:00
|
|
|
<form action="/login?redirect=<%= redirect %>" method="post">
|
|
|
|
<input type="text" name="username" placeholder="Username" id="username" required>
|
|
|
|
<input type="password" name="password" placeholder="Password" id="password" required>
|
|
|
|
<input type="submit" value="Login">
|
|
|
|
</form>
|
2022-03-13 16:16:46 +03:00
|
|
|
|
2022-08-26 19:39:25 +03:00
|
|
|
|
2022-03-13 16:16:46 +03:00
|
|
|
</body>
|
|
|
|
|
2022-08-26 19:39:25 +03:00
|
|
|
</html>
|