-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
23 lines (22 loc) · 822 Bytes
/
index.html
File metadata and controls
23 lines (22 loc) · 822 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<html>
<head>
<meta charset="UTF-8">
<title>Archive with Workman</title>
<link rel="stylesheet" type="text/css" href="bower_components/bootstrap/dist/css/bootstrap.min.css">
<script type="text/javascript" src="js/websocket.js"></script>
</head>
<body>
<nav class="navbar navbar-expand-md navbar-dark bg-dark mb-4">
<a class="navbar-brand" href="#">Archive with Workerman</a>
</nav>
<main role="main" class="container">
<div class="jumbotron">
<h1>Archive</h1>
<form method="POST" onsubmit="onSubmit(); return false;">
<textarea class="form-control" id="textarea" style="margin-bottom:20px"></textarea>
<button class="btn btn-md btn-primary" type="submit" role="button">Start</button>
</form>
</div>
</main>
</body>
</html>