-
Notifications
You must be signed in to change notification settings - Fork 2
/
popup.html
34 lines (30 loc) · 918 Bytes
/
popup.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Timer</title>
<link rel="stylesheet" href="./bootstrap/bootstrap.min.css">
<style>
body {
width: 300px;
padding: 20px 20px;
}
</style>
</head>
<body>
<div class="input-group mb-3">
<span class="input-group-text" id="basic-addon1">时间(秒)</span>
<input type="text" class="form-control" id="time" placeholder="例如10" aria-label="Username"
aria-describedby="basic-addon1">
</div>
<div class="input-group mb-3">
<textarea class="form-control" aria-label="With textarea" id="content" rows="5" cols="33"
placeholder="请输入内容"></textarea>
</div>
<div class="d-grid gap-2">
<button type="button" class="btn btn-dark" id="confirm">确认</button>
</div>
<script src="./popup.js"></script>
<script src="./bootstrap/bootstrap.bundle.min.js"></script>
</body>
</html>