-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcategory.html
144 lines (132 loc) · 7.1 KB
/
category.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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
<!doctype html>
<html lang="en" class="h-100">
<head>
<title>Contact Pro</title>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!--fonts-->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link
href="https://fonts.googleapis.com/css2?family=Fira+Sans:wght@400;500;600;700;800&family=Roboto:ital,wght@0,100;0,400;0,900;1,100;1,300;1,500;1,900&display=swap"
rel="stylesheet">
<!-- Bootstrap CSS -->
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-F3w7mX95PdgyTmZZMECAngseQB83DfGTowi0iMjiWaeVhAn4FJkqJByhZMI3AhiU" crossorigin="anonymous">
<!--Dev Icons-->
<link href="https://cdn.jsdelivr.net/gh/devicons/[email protected]/devicon.min.css" rel="stylesheet">
<!--Bootstrap icons-->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/font/bootstrap-icons.css">
<link href="/css/site.css" rel="stylesheet">
</head>
<body>
<nav class="navbar navbar-expand-md navbar-light fixed-top border-bottom border-light navShadow">
<div class="container-fluid">
<a class="navbar-brand" href="#"><img src="/img/ContactPro.png" height=45></a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarCollapse"
aria-controls="navbarCollapse" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarCollapse">
<ul class="navbar-nav me-auto mb-2 mb-md-0">
<li class="nav-item">
<a class="nav-link" href="/index.html">Home</a>
</li>
<li class="nav-item">
<a class="nav-link active" href="/contactlist.html">Contacts</a>
</li>
<li class="nav-item">
<a class="nav-link active" aria-current="page" href="/category.html">Categories</a>
</li>
</ul>
<ul class="navbar-nav">
<li class="nav-item me-2 mb-2">
<a type="button" class="btn btn-primary rounded-pill btnlinks" href="#">Register</a>
</li>
<li class="nav-item me-2">
<a type="button" class="btn btn-outline-primary rounded-pill btnlinks" href="#">Login</a>
</li>
</ul>
</div>
</div>
</nav>
<main class="content">
<section class="container mt-5">
<div class="row">
<div class="col-12 text-end mb-2">
<a class="btn btn-primary rounded-pill" href="/categorydetail.html">Create New</a>
</div>
</div>
<div class="row">
<div class="col-12">
<table class="table table-striped table-hover">
<thead>
<tr>
<th colspan="2">
My Categories
</th>
</tr>
</thead>
<tbody>
<tr>
<td>
Family
</td>
<td class="d-flex justify-content-end">
<a class="me-3 editIcons" href="/categorydetail.html"><i class="bi bi-pencil-fill"></i></a>
<a class="me-3 editIcons" href="/CategoryEmail.html"><i class="bi bi-envelope-fill"></i></a>
<a class="editIcons text-danger"><i class="bi bi-trash-fill "></i></a>
</td>
</tr>
<tr>
<td>
Friends
</td>
<td class="d-flex justify-content-end">
<a class="me-3 editIcons" href="/categorydetail.html"><i class="bi bi-pencil-fill"></i></a>
<a class="me-3 editIcons" href="/CategoryEmail.html"><i class="bi bi-envelope-fill"></i></a>
<a class="editIcons"><i class="bi bi-trash-fill text-danger"></i></a>
</td>
</tr>
<tr >
<td>
Wedding
</td>
<td class="d-flex justify-content-end" >
<a class="me-3 editIcons" href="/categorydetail.html"><i class="bi bi-pencil-fill"></i></a>
<a class="me-3 editIcons" href="/CategoryEmail.html"><i class="bi bi-envelope-fill"></i></a>
<a class="editIcons"><i class="bi bi-trash-fill text-danger"></i></a>
</td>
</tr>
</tbody>
</table>
</div>
</div>
</section>
</main>
<footer class="footer container-fluid mt-auto">
<div class="row align-items-center py-2">
<div class="col">
<div class="row align-items-center gy-2">
<div class="col d-flex justify-content-center justify-content-md-start order-last order-md-first copyright">
© 2022 Dane Whitman All Rights Reserved</div>
<div class="col d-flex justify-content-center">
<img src="img/ContactPro.png" height="50">
</div>
<div class="col-12 col-lg d-flex justify-content-center justify-content-md-end">
<a href="#" class="socialicons"><i class="bi bi-linkedin p-2 "></i></a>
<a href="#" class="socialicons"><i class="bi bi-twitter p-2"></i></a>
<a href="#" class="socialicons"><i class="bi bi-youtube p-2"></i></a>
<a href="#" class="socialicons"><i class="bi bi-instagram p-2 "></i></a>
</div>
</div>
</div>
</div>
</footer>
<!-- Bootstrap JS -->
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"
integrity="sha384-/bQdsTh/da6pkI1MST/rWKFNjaCP5gBSY4sEBT38Q/9RBh9AH40zEOg7Hlq2THRZ" crossorigin="anonymous">
</script>
</body>
</html>