26 lines
773 B
Plaintext
26 lines
773 B
Plaintext
<!DOCTYPE html>
|
|
</html>
|
|
<head>
|
|
<%- include('../partials/head.ejs') %>
|
|
</head>
|
|
<body>
|
|
<form action="/submit_post" method="POST">
|
|
<label><%= locale.username %>:</label><br/>
|
|
<input required name="username"><br/><br/>
|
|
|
|
<label><%= locale.password %>:</label><br/>
|
|
<input type="password" required id="password" name="password"><br/><br/>
|
|
|
|
<label><%= locale.title %>:</label><br/>
|
|
<input required name="title"><br/><br/>
|
|
|
|
<label><%= locale.post_content %>:</label><br/>
|
|
<textarea required name="content"></textarea><br/><br/>
|
|
|
|
<label><%= locale.tags %>:</label><br/>
|
|
<input name="tags"><br/><br/>
|
|
|
|
<input type="submit" value="Submit"><br/>
|
|
</body>
|
|
</form></html>
|