barebone-cms
Version:
rough attempt at a way-too-simple CMS
25 lines (22 loc) • 860 B
HTML
<!--
author: arthurKN (2015)
checkit: http://github.com/distrill
-->
<html>
<head>
<link type="text/css" rel="stylesheet" href="css/newTab.css"/>
<title>firstTab</title>
</head>
<body>
hello to you
<form id="uploadForm" enctype="multipart/form-data" action="" method="post" class="new-post-form">
<textarea name="title" class="post-body-input pbi-title" placeholder="title"></textarea><br>
<textarea name="body" class="post-body-input pbi-body" placeholder="body"></textarea><br>
<textarea name="link" class="post-body-input pbi-title" placeholder="link"></textarea><br><br>
<p>photo upload</p>
<input type="file" name="postThumbnail" class="photo-upload"><br><br><br>
<input type="submit" value="Submit" class="upload-form-submit">
</form>
</body>
</html>