mirror of
https://github.com/mgerb/mywebsite
synced 2026-01-11 18:32:50 +00:00
44 lines
1.1 KiB
Plaintext
44 lines
1.1 KiB
Plaintext
<% include layout.ejs %>
|
|
|
|
<body>
|
|
|
|
<div class="header">
|
|
|
|
|
|
</div>
|
|
|
|
<div class="container">
|
|
|
|
<form action="/newpost" method="post" enctype="multipart/form-data" class="form-signin">
|
|
<h2 class="form-signin-heading text-center">Submit New Post</h2>
|
|
<input type="text" class="form-control" name="title" placeholder="Title" required autofocus>
|
|
<br>
|
|
<input type="text" class="form-control" name="date" placeholder="Date" required>
|
|
<br>
|
|
<textarea type="text" class="form-control" name="intro" placeholder="Intro"></textarea>
|
|
<br>
|
|
<input type="password" class="form-control" name="key" placeholder="Key" required>
|
|
<%
|
|
if (typeof message != 'undefined'){ %>
|
|
|
|
<span class="text-center colorRed"><%=message%></span>
|
|
|
|
<%}%>
|
|
<br>
|
|
<br>
|
|
<input class="btn btn-default" type="file" name="file">
|
|
|
|
<br>
|
|
|
|
<button class="btn btn-lg btn-primary btn-block" type="submit">Submit</button>
|
|
|
|
</form>
|
|
|
|
|
|
</div>
|
|
|
|
</body>
|
|
|
|
<% include layoutBottom.ejs %>
|
|
|