-
Notifications
You must be signed in to change notification settings - Fork 35
/
app.html
264 lines (233 loc) · 7.86 KB
/
app.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
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<title>Neon Glow - Bootstrap Theme</title>
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.6.3/css/all.css" integrity="sha384-UHRtZLI+pbxtHCWp1t77Bi1L4ZtiqrqD80Kn4Z8NTSRyMA2Fd33n5dQ8lWUE00s/" crossorigin="anonymous">
<link rel="stylesheet" href="css/bootstrap4-neon-glow.min.css">
<link href="https://fonts.googleapis.com/css?family=Roboto" rel="stylesheet">
<link rel='stylesheet' href='//cdn.jsdelivr.net/font-hack/2.020/css/hack.min.css'>
</head>
<body>
<div class="navbar-dark text-white">
<div class="container">
<nav class="navbar px-0 navbar-expand-lg navbar-dark">
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarNavAltMarkup" aria-controls="navbarNavAltMarkup" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNavAltMarkup">
<div class="navbar-nav">
<a href="index.html" class="pl-md-0 p-3 text-light">Start</a>
<a href="app.html" class="p-3 text-decoration-none text-light">App example</a>
<a href="form.html" class="p-3 text-decoration-none text-light">Form example</a>
</div>
</div>
</nav>
</div>
</div>
<div class="container py-5 mb5">
<h1 class="mb-5">Sample application</h1>
<div class="row">
<div class="col-md-3">
<form class="mb-3">
<div class="input-group">
<input type="text" class="form-control" placeholder="Search">
<div class="input-group-append">
<button type="submit" class="btn btn-primary">Search</button>
</div>
</div>
</form>
<div class="list-group">
<a href="#" class="list-group-item list-group-item-action active"> Dashboard </a>
<a href="#" class="list-group-item list-group-item-action d-flex justify-content-between align-items-center">
Inbox
<span class="badge badge-primary badge-pill ml-auto">14</span>
</a>
<a href="#" class="list-group-item list-group-item-action">Orders</a>
<a href="#" class="list-group-item list-group-item-action">Products</a>
<a href="#" class="list-group-item list-group-item-action">Customers</a>
<a href="#" class="list-group-item list-group-item-action">Reports</a>
</div>
</div>
<div class="col-md-9">
<div class="row d-none">
<div class="col-md-6">
<div class="card">
<div class="card-body">
<h4 class="card-title">Card title</h4>
<p class="card-text">
Some quick example text to build on the card title
and make up the bulk of the card's content.
</p>
<!--<a href="#!" class="btn btn-primary">Go somewhere</a>-->
</div>
</div>
</div>
</div>
<table class="table">
<thead class="thead-light">
<tr>
<th scope="col">#</th>
<th scope="col">Item</th>
<th scope="col">Actions</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row">1</th>
<td>
<a href="#">
Some item on your list
</a>
</td>
<td>
<a href="#" class="btn btn-sm btn-primary my-1 my-sm-0">
<span class="fas fa-edit mr-1"></span>
Edit</a>
<a href="#" class="btn btn-sm btn-danger my-1 my-sm-0">
<span class="fas fa-trash mr-1"></span>
Delete</a>
</td>
</tr>
<tr>
<th scope="row">2</th>
<td>
<a href="#">
Some item on your list
</a>
</td>
<td>
<a href="#" class="btn btn-sm btn-primary my-1 my-sm-0">
<span class="fas fa-edit mr-1"></span>
Edit</a>
<a href="#" class="btn btn-sm btn-danger my-1 my-sm-0">
<span class="fas fa-trash mr-1"></span>
Delete</a>
</td>
</tr>
<tr>
<th scope="row">3</th>
<td>
<a href="#">
Some item on your list
</a>
</td>
<td>
<a href="#" class="btn btn-sm btn-primary my-1 my-sm-0">
<span class="fas fa-edit mr-1"></span>
Edit</a>
<a href="#" class="btn btn-sm btn-danger my-1 my-sm-0">
<span class="fas fa-trash mr-1"></span>
Delete</a>
</td>
</tr>
<tr>
<th scope="row">4</th>
<td>
<a href="#">
Some item on your list
</a>
</td>
<td>
<a href="#" class="btn btn-sm btn-primary my-1 my-sm-0">
<span class="fas fa-edit mr-1"></span>
Edit</a>
<a href="#" class="btn btn-sm btn-danger my-1 my-sm-0">
<span class="fas fa-trash mr-1"></span>
Delete</a>
</td>
</tr>
<tr>
<th scope="row">5</th>
<td>
<a href="#">
Some item on your list
</a>
</td>
<td>
<a href="#" class="btn btn-sm btn-primary my-1 my-sm-0">
<span class="fas fa-edit mr-1"></span>
Edit</a>
<a href="#" class="btn btn-sm btn-danger my-1 my-sm-0">
<span class="fas fa-trash mr-1"></span>
Delete</a>
</td>
</tr>
<tr>
<th scope="row">6</th>
<td>
<a href="#">
Some item on your list
</a>
</td>
<td>
<a href="#" class="btn btn-sm btn-primary my-1 my-sm-0">
<span class="fas fa-edit mr-1"></span>
Edit</a>
<a href="#" class="btn btn-sm btn-danger my-1 my-sm-0">
<span class="fas fa-trash mr-1"></span>
Delete</a>
</td>
</tr>
<tr>
<th scope="row">7</th>
<td>
<a href="#">
Some item on your list
</a>
</td>
<td>
<a href="#" class="btn btn-sm btn-primary my-1 my-sm-0">
<span class="fas fa-edit mr-1"></span>
Edit</a>
<a href="#" class="btn btn-sm btn-danger my-1 my-sm-0">
<span class="fas fa-trash mr-1"></span>
Delete</a>
</td>
</tr>
<tr>
<th scope="row">8</th>
<td>
<a href="#">
Some item on your list
</a>
</td>
<td>
<a href="#" class="btn btn-sm btn-primary my-1 my-sm-0">
<span class="fas fa-edit mr-1"></span>
Edit</a>
<a href="#" class="btn btn-sm btn-danger my-1 my-sm-0">
<span class="fas fa-trash mr-1"></span>
Delete</a>
</td>
</tr>
<tr>
<th scope="row">9</th>
<td>
<a href="#">
Some item on your list
</a>
</td>
<td>
<a href="#" class="btn btn-sm btn-primary my-1 my-sm-0">
<span class="fas fa-edit mr-1"></span>
Edit</a>
<a href="#" class="btn btn-sm btn-danger my-1 my-sm-0">
<span class="fas fa-trash mr-1"></span>
Delete</a>
</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
<!-- Optional JavaScript -->
<!-- jQuery first, then Popper.js, then Bootstrap JS -->
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js" integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js" integrity="sha384-UO2eT0CpHqdSJQ6hJty5KVphtPhzWj9WO1clHTMGa3JDZwrnQq4sF86dIHNDz0W1" crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js" integrity="sha384-JjSmVgyd0p3pXB1rRibZUAYoIIy6OrQ6VrjIEaFf/nJGzIxFDsf4x0xIM+B07jRM" crossorigin="anonymous"></script>
</body>
</html>