-
Notifications
You must be signed in to change notification settings - Fork 0
/
popup.html
32 lines (31 loc) · 995 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
<!DOCTYPE html>
<html>
<head>
<link rel = "stylesheet" type = "text/css" href = "layout.css">
</head>
<body>
<h2>
SAVED NAMES FOR PDF FILE:
</h2>
<form>
<div class="form-group-row1">
<input type="text" class="form-control" id="addMeBox">
<input type="button" id="addMeButton" value="Add Name">
</div>
<div class="form-group-row2" id="addNewControls">
<!-- To iterate button creation -->
<!-- <input type="button" id="1">TAGNAME1</button> -->
</div>
<div class="form-group-row3">
<label for="finalFilename">Final File Name</label>
<input type="text" class="form-control" id="finalTextBox">
</div>
<div class="form-group-row4">
<center>
<input type="button" class="form-control" id="savebutton" value="SAVE TO">
</center>
</div>
</form>
<script src="scripts.js"></script>
</body>
</html>