-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpopup.html
32 lines (30 loc) · 1.16 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
<!doctype html>
<html>
<head>
<title>Life Clock For New Tab</title>
<script src ="jquery-3.2.0.min.js"></script>
<script src="moment.min.js"></script>
<script src ="jquery.datetimepicker.full.min.js"></script>
<script src="popup.js"></script>
<link rel="stylesheet" type="text/css" href="bootstrap.min.css" />
<link rel="stylesheet" type="text/css" href="jquery.datetimepicker.min.css" />
</head>
<body style="height:300px; width:430px;">
<div class="container">
<div class="clearfix"></div>
<div id="data"></div>
<div class="form-group">
<label>Your Date Of Birth</label>
<input style="padding:5px;" class="form-control" type="text" name="text" id="text">
<span id="error"></span>
</div>
<div class="form-group">
<button style="height: 33px; cursor: pointer;" class ="btn btn-primary" id="set">Submit</button>
</div>
<div class="clear"></div>
<p style="padding:5px; margin-top:100px;"> Once you put your date of birth, whenever you open a new tab, current hour of your life in which you're living now will be displayed.</p>
<p></p>
<a id="about" href="#">About</a>
</div>
</body>
</html>