-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
41 lines (37 loc) · 1.33 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
34
35
36
37
38
39
40
41
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/vite-practice-lab-review/vite.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Vite practice lab</title>
<script type="module" crossorigin src="/vite-practice-lab-review/assets/index-IvULkBUv.js"></script>
<link rel="stylesheet" crossorigin href="/vite-practice-lab-review/assets/index-X4m0RMh6.css">
</head>
<body>
<div id="app">
<form id="name">
<h2 id="new-header">Local Storage form add name</h2>
<p> Please add a name </p>
<label>
Name
<input type="text" id="name" name="name" placeholder="Name">
</label>
<button type="submit" class="submit">Submit</button>
</form>
<form id="removeName">
<h2 id="new-header">Local Storage form remove name</h2>
<p> Please remove a name </p>
<label>
Name to be removed
<input type="text" id="remove" name="remove" placeholder="Name to be removed">
</label>
<button type="submit" class="submit">remove</button>
<button type="button" id="removeAll">remove all</button>
</form>
<button id="reset">Reset</button>
<main>
</main>
</div>
</body>
</html>