-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTemplate.html
41 lines (41 loc) · 1.84 KB
/
Template.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
<!DOCTYPE>
<head>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/js/bootstrap.min.js"></script>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<link rel="stylesheet" type="text/css" href="style.css">
<script src="TemplateJS.js"></script>
</head>
<body>
<div id="content">
<h1 contenteditable=true> Add your title here!!!</h1>
<p contenteditable="true">Fill in your date range!!!</p>
<div class="col-md-12 col-sm-12">
<table class="title">
<tr>
<th>Source</th>
<th>Date</th>
<th>Issue</th>
</tr>
</table>
</div>
<div class="col-md-12 col-sm-12" id="list">
<table style="width:100%" id="myTable">
<tr>
<td id="source" contenteditable="true" rowspan="100"></td>
</tr>
<tr>
<td id="newDate" contenteditable="true"></td>
<td id="newIssue" contenteditable="true"></td>
</tr>
</table>
</div>
</div>
<div class="col-md-12 col-sm-12 no-print actionButtons" id="formButtons">
<button class="btn btn-primary" id="cloneTable"><span class="glyphicon glyphicon-list-alt"></span> Add new form</button>
<button class="btn btn-secondary" id="addNewDateIssue"><span class="glyphicon glyphicon-calendar"></span> Add new date</button>
<button class="btn btn-info" id="jBold"><span class="glyphicon glyphicon-bold"></span> Bold - Unbold</button>
<button class="btn btn-warning" id="addLink"><span class="glyphicon glyphicon-link"></span> Add Link</button>
<button class="btn btn-success" id="print"><span class="glyphicon glyphicon-print"></span> Preview/Print</button>
</div>
</body>