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