blazerapp/cms/templates/new.html.hbs

22 lines
758 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>
2021-09-11 17:49:27 -04:00
<form onsubmit="forwardForImage('new_f', 'new/add')" id="new_f" name="new_f">
<select name="lang", id="lang">
<option value="en">en</option>
<option value="es">es</option>
</select>
2021-09-08 21:41:34 -04:00
<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>
2021-09-11 17:49:27 -04:00
<!-- <script src="/static/jquery.min.js"></script> -->
<script src="/static/utils.js"></script>
2021-09-08 21:41:34 -04:00
</html>