mirror of
https://github.com/Akif9748/akf-forum.git
synced 2024-11-01 11:25:04 +03:00
25 lines
643 B
Text
25 lines
643 B
Text
|
|
</html>
|
|
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<%- include("extra/meta", {title: "Log in!" }) %>
|
|
|
|
<body style="text-align: center;">
|
|
<link rel="stylesheet" href="/css/login.css" />
|
|
|
|
<%- include("extra/navbar") %>
|
|
|
|
<h1 class="title">Login</h1>
|
|
|
|
<form action="/login?redirect=<%= redirect !== "/register" ? redirect : "/" %>" method="post">
|
|
|
|
<input type="text" name="username" placeholder="Username" class="input" required>
|
|
<input type="password" name="password" placeholder="Password" class="input" required>
|
|
<input type="submit" style="width:100%"class="btn-primary" value="Login">
|
|
</form>
|
|
|
|
|
|
</body>
|
|
|
|
</html>
|