akf-forum/views/register.ejs

30 lines
698 B
Plaintext
Raw Normal View History

2022-03-13 16:16:46 +03:00
<!DOCTYPE html>
<html lang="en">
<%- include("extra/meta", {title: "Register!" }) %>
2022-03-13 16:16:46 +03:00
<body style="text-align: center;">
<link rel="stylesheet" href="/css/login.css" />
<%- include("extra/navbar") %>
2022-03-13 16:16:46 +03:00
2022-08-26 20:27:39 +03:00
<h1 class="title">Register</h1>
2022-03-13 16:16:46 +03:00
<form action="/register" method="post">
2022-08-26 20:27:39 +03:00
<input type="text" name="username" placeholder="Username" class="input" required>
2022-03-13 16:16:46 +03:00
2022-08-26 20:27:39 +03:00
<input type="password" name="password" placeholder="Password" class="input" required>
2022-03-13 16:16:46 +03:00
2022-08-26 20:27:39 +03:00
<input type="text" name="avatar" placeholder="Avatar URL" class="input">
2022-03-13 16:16:46 +03:00
2022-08-26 20:27:39 +03:00
<input type="submit" class="btn-primary" style="width:100%;" value="Register">
2022-03-13 16:16:46 +03:00
</form>
2022-03-13 16:16:46 +03:00
</body>
2022-08-26 20:27:39 +03:00
</html>