remove public from gitignore

This commit is contained in:
bel
2020-03-15 16:41:55 +00:00
parent a6ea7a79e8
commit fe6e721d84
5 changed files with 126 additions and 1 deletions

29
public/index.html Executable file
View File

@@ -0,0 +1,29 @@
<html>
<head>
<link rel="stylesheet" type="text/css" href="/css/water.css"/>
</head>
<body>
<h1>
Firestormy
</h1>
<details>
<summary>Upsert Job</summary>
<form id="upserts" action="#" method="get" onsubmit="upserts(); return false;">
<input type="text" name="id" placeholder="id"/>
<select name="language" required>
<option value="bash" selected>bash</option>
</select>
<input type="text" name="cron" placeholder="cron" value="@daily"/>
<textarea name="script" placeholder="script" required rows="5"></textarea>
<button type="submit">Upsert</button>
</form>
</details>
<table id="jobs">
<tbody>
</tbody>
</table>
</body>
<footer>
<script src="/js/js.js"></script>
</footer>
</html>