-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
77 lines (60 loc) · 2.28 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
<!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>Document</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/semantic-ui/2.4.1/semantic.min.css"
integrity="sha256-9mbkOfVho3ZPXfM7W8sV2SndrGDuh7wuyLjtsWeTI1Q=" crossorigin="anonymous" />
<link rel="stylesheet" href="./styles.css">
<script src="./app.js" defer></script>
</head>
<body>
<!-- UI TABLE -->
<table class="ui celled table">
<thead>
<tr>
<th>Title</th>
<th>Author</th>
<th>Pages</th>
<th>Have Read?</th>
<th class="button-column">Delete?</th>
</tr>
</thead>
<tbody class="table-body">
</tbody>
</table>
<!-- UI CONTAINER -->
<div class="ui grid">
<div class="ui container">
<!-- UI FORM -->
<form class="ui form hide" action="#">
<div class="field">
<label>Title</label>
<input class="title" type="text" name="title" placeholder="Book Title" required>
</div>
<div class="field">
<label>Author</label>
<input class="author" type="text" name="author" placeholder="Book Author" required>
</div>
<div class="field">
<label>Number of Pages</label>
<input class="pages" type="number" name="pages" placeholder="123" required>
</div>
<div class="field">
<div class="ui checkbox">
<input class="readStatus" type="checkbox" tabindex="0">
<label>Have Read?</label>
</div>
</div>
<button class="ui huge inverted blue button" type="submit" id="submitBtn">Submit</button>
</form>
</div>
<div class="row">
<div class="ui icon inverted green button" data-variation="huge" id="addBtn">
<i class="add icon toggleIcon"></i>
</div>
</div>
</body>
</html>