2022-03-13 16:16:46 +03:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="en">
|
|
|
|
|
2022-03-26 23:28:10 +03:00
|
|
|
<%- include("extra/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>
|
|
|
|
<button class="buyuk" onclick="window.location.href = '/register'">REGISTER PAGE</button>
|
|
|
|
<hr>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<h1>Login</h1>
|
|
|
|
<hr>
|
|
|
|
<form action="/login" 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-26 23:28:10 +03:00
|
|
|
<%- include("extra/footer") %>
|
2022-03-13 16:16:46 +03:00
|
|
|
</body>
|
|
|
|
|
2022-02-26 21:12:54 +03:00
|
|
|
</html>
|