-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopup.html
45 lines (39 loc) · 1.33 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
35
36
37
38
39
40
41
42
43
44
45
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="css/style.css">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.0-beta3/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-eOJMYsd53ii+scO/bJGFsiCZc+5NDVN2yr8+0RDqr0Ql0h+rP48ckxlpbzKgwra6" crossorigin="anonymous">
</head>
<body>
<div class="container" style="min-width: 500px;">
<div class="row">
<div class="col-12 pt-3 pb-3">
<h2>Legito production warning</h2>
<div>
<!-- <small>Your current domain: <span id="currentDomain"></span></small>-->
</div>
</div>
</div>
<h5>Your domains</h5>
<ul id="domainList">
</ul>
<div class="row">
<div class="col-12 pt-3 pb-3">
<h4>Add domain</h4>
</div>
</div>
<div class="row row-cols-lg-auto g-3 align-items-center pb-3">
<div class="col-12">
<form class="form-inline">
<div class="form-group">
<input type="text" class="form-control" name="domain" id="addTextInput" placeholder="legito.cz" required minlength="3">
<button type="submit" id="addButton" class="btn btn-success">Add</button>
</div>
</form>
</div>
</div>
</div>
<script src="popup.js"></script>
</body>
</html>