-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopup.html
34 lines (33 loc) · 1.23 KB
/
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>Title</title>
<link rel="stylesheet" href="styles.css">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css"
integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
</head>
<body>
<div class="container">
<div class="card text-center">
<div class="card-header">
<img src="icon16.png" alt="..." class="img-thumbnail rounded float-left">
Featured
</div>
<div class="card-body">
<label for="apiUri" class="d-flex">Enter email</label>
<div class="input-group input-group-sm mb-3">
<input type="email" id="apiUri" class="form-control" aria-label="Sizing example input"
placeholder="Enter email"
aria-describedby="inputGroup-sizing-sm">
</div>
<button class="btn btn-primary btn-sm btn-lg btn-block" id="btnChange">Submit</button>
</div>
<h6 id="status">
</h6>
</div>
</div>
<script src="javascript/axios.js"></script>
<script src="javascript/popup.js"></script>
</body>
</html>