-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
26 lines (23 loc) · 1.12 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="MSIN 625 Project1 Cookie CRUD by Nury Amanmadov">
<title>Project1 Cookie CRUD</title>
<link rel="stylesheet" href="css/cookie.css">
<script src="js/cookie.js" defer></script>
</head>
<body>
<input type="text" class="searchTerm" name="cookieName" id="cookieName" placeholder="Cookie Name Here...">
<input type="text" class="searchTerm" name="cookieValue" id="cookieValue" placeholder="Cookie Value Here...">
<input type="date" class="searchTerm" name="cookieExpire" id="cookieExpire" placeholder="">
<br>
<button id="btnSetCookie" class="btn btn-slide-left">Set Cookie</button>
<button id="btnGetCookie" class="btn btn-slide-left">Get Cookie</button>
<button id="btnDeleteCookie" class="btn btn-slide-left">Delete Cookie</button>
<button id="btnDisplayAllCookies" class="btn btn-slide-left">All Cookies</button>
<div class="output"></div>
</body>
</html>