generated from HackYourFutureBelgium/separation-of-concerns-starter
-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
37 lines (33 loc) · 1.23 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="./client/public/favicon.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>SOC Starter</title>
<link href="./client/styles/index.css" rel="stylesheet" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.1/css/all.min.css">
</head>
<body>
<section class="container">
<div class="title">
<h1>Contact list</h1>
</div>
<div class="list-item">
<form>
<button id="refresh" type="submit"><i class="fa-solid fa-address-book"></i>Refresh</button>
<input id="name-input" type="text" placeholder="Enter name">
<button id="add-contact" type="button"><i class="icon1 fa-solid fa-user-plus"></i>Add</button>
<button id="remove-contact" type="button"><i class="icon2 fa-solid fa-trash"></i>Remove</button>
<button id="edit-contact" type="button"><i class="icon3 fa-solid fa-pen-to-square"></i>Edit</button>
</form>
</div>
</section>
<section class="add-list" id="contact-list">
</section>
<footer class="footer">
<h2>Group-No-3 Hack Your Future</h2>
</footer>
<script type="module" src="./client/src/init.js"></script>
</body>
</html>