forked from kshitij10496/Read-Later
-
Notifications
You must be signed in to change notification settings - Fork 0
/
popup.html
32 lines (28 loc) · 798 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>
</head>
<body>
<form>
<a href = "settings.html" target="_blank" ><img src="settings.png" width="30" height="30" ></a>
<hr/>
<input type="text" id="title" size="15" maxlength="25" name="title">
<br/>
<hr/
<p>Please enter the date for the reminder:</p>
<input type="date" id="date" />
<br/>
<hr/>
<p>Please enter the time for the reminder:</p>
<input type="time" id="time" />
<br/>
<hr/>
<p>Comments:</p>
<textarea id = "comments" cols="20" rows="5" placeholder="Add your Comments"></textarea>
<button id="submit"><img src="alarm.png" width="50" height="50" >SUMBIT
</button>
</form>
<script src="popup.js">
</script>
</body>
</html>