mirror of
https://github.com/Akif9748/akf-forum.git
synced 2024-11-01 03:25:04 +03:00
26 lines
686 B
Text
26 lines
686 B
Text
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<%- include("extra/old_header", {title: "Login page!" }) %>
|
|
|
|
<body>
|
|
<!-- Navbar: -->
|
|
<a href="/"><img class="logo" src="/images/logo.jpg" alt="AKF-FORUM"></a>
|
|
<br>
|
|
<a href="/register/"> <button class="big">REGISTER</button> </a>
|
|
<hr>
|
|
|
|
|
|
|
|
<h1>Login</h1>
|
|
<hr>
|
|
<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>
|
|
|
|
<%- include("extra/old_footer") %>
|
|
</body>
|
|
|
|
</html>
|