-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
35 lines (31 loc) · 1.54 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Crow</title>
<link href="https://stackpath.bootstrapcdn.com/bootstrap/4.2.1/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-GJzZqFGwb1QTTN6wy59ffF1BuGJpLSa9DkKMp0DgiMDm4iYMj70gZWKYbI706tWS" crossorigin="anonymous">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.6.3/css/all.css" integrity="sha384-UHRtZLI+pbxtHCWp1t77Bi1L4ZtiqrqD80Kn4Z8NTSRyMA2Fd33n5dQ8lWUE00s/" crossorigin="anonymous">
<link href="https://cdnjs.cloudflare.com/ajax/libs/select2/4.0.7/css/select2.min.css" rel="stylesheet" />
<style> .center { text-align: center; } </style>
</head>
<body>
<div class="container center">
<div class="jumbotron">
<h3 id="edition">(no date)</h3>
<div class="form-group">
<input class="form-control" type="text" placeholder="90" id="pageNumber">
</div>
<div class="btn-group" role="group" aria-label="Send page">
<button type="button" class="btn btn-primary btn-send" data-method="slack">Slack</button>
<button type="button" class="btn btn-danger btn-send" data-method="pg">PG</button>
</div>
</div>
<div class="btn-group-vertical">
<button type="button" class="btn btn-secondary" id="btn-merge">Merge pages</button>
<button type="button" class="btn btn-info" id="btn-date">Select date</button>
</div>
</div>
<script>window.$ = window.jQuery = require('jquery');</script>
<script>require("./renderer");</script>
</body>
</html>