-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
33 lines (31 loc) · 1.07 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Reminder App</title>
<script src="https://www.gstatic.com/firebasejs/8.3.1/firebase-app.js"></script>
<script src="https://www.gstatic.com/firebasejs/8.3.1/firebase-auth.js"></script>
<script src="https://www.gstatic.com/firebasejs/8.3.1/firebase-firestore.js"></script>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="container">
<form action="" id="reminderApp">
<h1>Reminder App</h1>
<div class="alert">Reminder Done ✔</div>
<div class="inputBox">
<input type="text" id="title" placeholder="Title">
</div>
<div class="inputBox">
<input type="datetime-local" id="date" placeholder="Title">
</div>
<div class="inputBox">
<button type="submit">Add Reminder</button>
</div>
<ul id="reminders"></ul>
</form>
</div>
<script src="https://cdnjs.cloudflare.com/ajax/libs/firebase/7.14.1-0/firebase.js"></script>
<script src="app.js"></script>
</body>
</html>