-
Notifications
You must be signed in to change notification settings - Fork 0
/
popup.html
32 lines (30 loc) · 909 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>
<meta content="text/html; charset=utf-8" http-equiv="Content-Type" />
<title>Deadline</title>
<link type="text/css" href="deadline.css" rel="stylesheet" />
<script src="jquery.min.js"></script>
<script src="deadline.js"></script>
</head>
<body id="container">
<header>
<h1>Deadlines</h1>
</header>
<section id="main-content">
<ul id="d_list"></ul>
<form id="form_area">
Add:
<div id="dialog" title="Setup">
<p>Title:
<input type="text" id="title_value" />
</p>
<p>Date:
<input type="date" id="datepicker" /></p>
<p>
<input type="button" id="set_values" value="add" /></p>
</div>
</form>
</section>
</body>
</html>