2022-03-13 16:16:46 +03:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="en">
|
|
|
|
|
2022-03-26 23:28:10 +03:00
|
|
|
<%- include("extra/header", {title: "Open Thread!" }) %>
|
2022-03-13 16:16:46 +03:00
|
|
|
|
2022-03-26 23:28:10 +03:00
|
|
|
<body>
|
2022-03-13 16:16:46 +03:00
|
|
|
|
2022-03-26 23:28:10 +03:00
|
|
|
<%- include("extra/navbar", {user}) %>
|
2022-03-13 16:16:46 +03:00
|
|
|
|
2022-03-22 21:25:09 +03:00
|
|
|
|
|
|
|
|
2022-03-26 23:28:10 +03:00
|
|
|
<form action="/threads/" method="POST">
|
|
|
|
<h2>Title:</h2>
|
|
|
|
<input name="title"></input>
|
2022-03-22 21:25:09 +03:00
|
|
|
|
2022-03-26 23:28:10 +03:00
|
|
|
<hr>
|
|
|
|
<h2>Content:</h2>
|
|
|
|
<textarea rows="4" cols="50" name="content"></textarea>
|
2022-03-22 21:25:09 +03:00
|
|
|
|
2022-03-26 23:28:10 +03:00
|
|
|
<hr>
|
|
|
|
<button class="buyuk" type="submit">Open Thread!</button>
|
|
|
|
</form>
|
2022-03-22 21:25:09 +03:00
|
|
|
|
|
|
|
|
2022-03-26 23:28:10 +03:00
|
|
|
<%- include("extra/footer") %>
|
|
|
|
</body>
|
2022-03-13 16:16:46 +03:00
|
|
|
|
2022-02-26 21:12:54 +03:00
|
|
|
</html>
|