akf-forum/views/userEdit.ejs

29 lines
690 B
Text
Raw Normal View History

<!DOCTYPE html>
<html lang="en">
2022-03-26 23:28:10 +03:00
<%- include("extra/header", {title: "Main page!" }) %>
2022-03-26 23:28:10 +03:00
<body>
2022-03-26 23:28:10 +03:00
<%- include("extra/navbar", {user}) %>
2022-03-26 23:28:10 +03:00
<h1>This page is not ready.</h1>
<hr>
<!--- <form action="/userEdit/<%= %>" method="post">
<input type="text" name="username" placeholder="Username" id="username" required>
<input type="password" name="password" placeholder="Password" id="password" required>
<input type="text" name="avatar" placeholder="Avatar URL" id="avatar">
<input type="submit" value="Register">
</form>
-->
2022-03-26 23:28:10 +03:00
<%- include("extra/footer") %>
</body>
</html>