-
Notifications
You must be signed in to change notification settings - Fork 18
/
index.html
51 lines (36 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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Link Saver</title>
<link rel="stylesheet" href="app.css">
</head>
<body>
<nav id="nav">
<div class="container" id="navContainer">
<h1 class="nav-header">Link Saver</h1>
<a id="addBtn">+</a>
</div>
</nav>
<div class="container">
<div class="panel hidden" id="addLinkPanel">
<h3 class="header">Add Link</h3>
<form id="addLinkForm">
<input type="text" name="title" id="linkTitle" class="form-control" placeholder="Title">
<input type="text" name="url" id="linkUrl" class="form-control" placeholder="URL">
<input type="text" name="category" id="linkCategory" class="form-control" placeholder="Categories (comma separated)">
<div id="addedCategories">
</div>
<input type="submit" id="submitButton" value="Submit">
<input type="submit" id="cancelButton" value="Cancel">
</form>
</div>
<div id="linksList">
</div>
</div>
</div>
<script src="app.js"></script>
</body>
</html>