blazerapp/cms/templates/new.html.hbs

19 lines
540 B
Handlebars
Raw Normal View History

2021-09-08 21:41:34 -04:00
{{! vim: set ft=html: }}
<html>
<head>
<link rel="stylesheet" href="/static/style.css">
</head>
<body>
<p>add</p>
<form action="new/add" method="post">
<input type="text", id="lang", name="lang">
<input type="file" name="image", id="image", accept="image/png">
<input type="text", id="name", name="name">
<input type="text", id="new_date", name="new_date">
<input type="submit", value="Submit">
</form>
</body>
</head>
</html>