2022-08-26 20:21:45 +03:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="en">
|
|
|
|
|
2022-08-26 20:22:46 +03:00
|
|
|
<%- include("extra/meta", {title: "Create thread!" }) %>
|
2022-08-26 20:21:45 +03:00
|
|
|
|
|
|
|
|
2022-08-26 20:57:55 +03:00
|
|
|
|
2022-08-26 20:21:45 +03:00
|
|
|
<body style="text-align: center;">
|
2022-08-27 10:31:16 +03:00
|
|
|
<link rel="stylesheet" href="/css/create_thread.css" />
|
|
|
|
|
2022-08-26 20:21:45 +03:00
|
|
|
<%- include("extra/navbar") %>
|
|
|
|
|
|
|
|
|
|
|
|
<form>
|
2022-08-26 20:57:55 +03:00
|
|
|
<h2 class="title" style="align-self: baseline;">Title:</h2>
|
|
|
|
<input name="title" class="input"></input>
|
2022-08-26 20:21:45 +03:00
|
|
|
|
2022-08-31 18:11:54 +03:00
|
|
|
|
2022-08-26 20:57:55 +03:00
|
|
|
<h2 class="title" style="align-self: baseline;">Content:</h2>
|
|
|
|
<textarea rows="4" cols="50" name="content" class="input"></textarea>
|
2022-08-26 20:21:45 +03:00
|
|
|
|
2022-08-31 18:11:54 +03:00
|
|
|
|
2022-08-26 20:57:55 +03:00
|
|
|
<button class="btn-primary" style="width:100%" type="submit">Create Thread!</button>
|
2022-08-26 20:21:45 +03:00
|
|
|
</form>
|
|
|
|
|
|
|
|
|
|
|
|
<script type="module">
|
|
|
|
|
|
|
|
import request from "../../js/request.js";
|
|
|
|
|
|
|
|
document.addEventListener("submit", async e => {
|
|
|
|
e.preventDefault();
|
|
|
|
const form = e.target;
|
|
|
|
const data = new FormData(form);
|
|
|
|
|
|
|
|
const response = await request("/api/threads/", "POST", {
|
|
|
|
title: data.get("title"), content: data.get("content")
|
|
|
|
});
|
|
|
|
|
|
|
|
|
2022-08-26 22:09:02 +03:00
|
|
|
if (response)
|
2022-08-26 20:21:45 +03:00
|
|
|
window.location.href = "/threads/" + response.id;
|
2022-08-26 22:09:02 +03:00
|
|
|
|
2022-08-26 20:21:45 +03:00
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
</script>
|
|
|
|
</body>
|
|
|
|
|
|
|
|
</html>
|