mirror of
https://github.com/Akif9748/akf-forum.git
synced 2024-11-01 03:25:04 +03:00
26 lines
No EOL
677 B
Text
26 lines
No EOL
677 B
Text
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<%- include("extra/header", {title: "Login page!" }) %>
|
|
|
|
<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>
|
|
|
|
<%- include("extra/footer") %>
|
|
</body>
|
|
|
|
</html> |