Update create_thread.ejs

This commit is contained in:
tokmak0 2022-08-26 20:57:55 +03:00 committed by GitHub
parent 1624430551
commit 42f4cace98
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 7 additions and 5 deletions

View File

@ -3,21 +3,23 @@
<%- include("extra/meta", {title: "Create thread!" }) %>
<link rel="stylesheet" href="/css/create_thread.css" />
<body style="text-align: center;">
<%- include("extra/navbar") %>
<form>
<h2 style="color: #4d18e6;">Title:</h2>
<input name="title"></input>
<h2 class="title" style="align-self: baseline;">Title:</h2>
<input name="title" class="input"></input>
<hr>
<h2 style="color: #4d18e6;">Content:</h2>
<textarea rows="4" cols="50" name="content"></textarea>
<h2 class="title" style="align-self: baseline;">Content:</h2>
<textarea rows="4" cols="50" name="content" class="input"></textarea>
<hr>
<button class="big" type="submit">Create Thread!</button>
<button class="btn-primary" style="width:100%" type="submit">Create Thread!</button>
</form>