forked from maccman/motivation
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoptions.html
31 lines (28 loc) · 1.02 KB
/
options.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Options</title>
<link rel="stylesheet" href="css/option.css">
</head>
<body>
<div id = "infoInput">
<label class="title">Birthday:</label>
<input type="date" id="birthday" >
<br>
<input type="checkbox" id="dayOfLifeChk" class="css-checkbox" checked="checked">
<label for="dayOfLifeChk" class="css-label">Show day of life</label>
<br>
<input type="checkbox" id="searchChk" class="css-checkbox" checked="checked">
<label for="searchChk" class="css-label">Show search bar</label>
<br>
<input type="checkbox" id="optionChk" class="css-checkbox" checked="checked">
<label for="optionChk" class="css-label">Show options button</label>
<div style="margin: 15px 0;"></div>
<button id="saveBtn">Save</button>
<div class="linkText">This extension is based on
<a href="https://chrome.google.com/webstore/detail/motivation/ofdgfpchbidcgncgfpdlpclnpaemakoj" target="_blank"> Motivation.</a>
</div>
</div>
<script src="js/options.js"></script>
</body>