akf-forum/views/login.ejs

27 lines
686 B
Plaintext
Raw Normal View History

2022-03-13 16:16:46 +03:00
<!DOCTYPE html>
<html lang="en">
2022-08-26 16:27:29 +03:00
<%- include("extra/old_header", {title: "Login page!" }) %>
2022-03-13 16:16:46 +03:00
<body>
<!-- Navbar: -->
<a href="/"><img class="logo" src="/images/logo.jpg" alt="AKF-FORUM"></a>
<br>
2022-08-11 15:36:28 +03:00
<a href="/register/"> <button class="big">REGISTER</button> </a>
2022-03-13 16:16:46 +03:00
<hr>
<h1>Login</h1>
<hr>
2022-08-11 00:38:44 +03:00
<form action="/login?redirect=<%= redirect %>" method="post">
2022-03-13 16:16:46 +03:00
<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-08-26 16:27:29 +03:00
<%- include("extra/old_footer") %>
2022-03-13 16:16:46 +03:00
</body>
2022-04-06 22:49:16 +03:00
</html>