-
Notifications
You must be signed in to change notification settings - Fork 0
/
popup.html
39 lines (32 loc) · 1.02 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
<!DOCTYPE HTML>
<html>
<head>
<title>Localhost Automate</title>
<meta charset="utf-8" />
<script type="text/javascript" src="inc/jquery.min.js"></script>
<script type="text/javascript" src="popup.js"></script>
<link rel="stylesheet" href="inc/bootstrap-theme.min.css" />
<link rel="stylesheet" href="inc/bootstrap.min.css" />
<link rel="stylesheet" href="style.css" />
</head>
<body>
<div id="la-wrapper">
<div id="la-header">
<div class="section-header form-item">Localhost directory</div>
<div class="section-header form-item">Localhost URL</div>
</div>
<div id="la-addresses-wrapper"></div>
<div id="la-footer">
<button id="addAnother" type="button" class="btn-primary">Add another</button>
<button id="saveAddresses" type="button" class="btn-primary">Save entries</button>
<br>
<div id="messages-wrapper">
<span id="messages"></span>
</div>
<div id="about">
Localhost Automate by <a href="http://www.talkoren.com" target="_blank">Tal Koren</a>
</div>
</div>
</div>
</body>
</html>