-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpopup.html
38 lines (38 loc) · 1.36 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
<!DOCTYPE html>
<html>
<head>
<title>FT Headers</title>
<link href="styles.css" rel="stylesheet">
<script src="public/bundle.js"></script>
</head>
<body>
<header class="heading">
<img alt="FT" class="heading__logo" src="icons/favicon-194x194.png">
<h1 class="heading__title">Headers</h1>
</header>
<section class="profile-picker" data-profile-picker></section>
<section class="profile profile--reveal" data-profile>
<div class="profile__section" data-headers-panel>
<button class="delete-profile" data-profile-delete>Delete profile</button>
<label>Profile name <input data-profile-name></label>
</div>
<div class="profile__section">
<h3 class="profile__section-title">User</h3>
<div class="profile__users" data-user></div>
</div>
<div class="profile__section">
<h3 class="profile__section-title">Headers</h3>
<div class="profile__headers" data-headers></div>
<button class="add-header" data-add-header>Add another header</button>
</div>
</section>
<section class="banner" data-banner>
<button class="banner__button" data-add-profile>Add another profile</button>
<button class="banner__button" data-import-profile>Import ModHeaders profile</button>
</section>
<section class="import" data-import-panel>
<textarea class="import__data" data-import-data></textarea>
<button data-import-save>Import profile</button>
</section>
</body>
</html>