-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathurls.html
34 lines (33 loc) · 1.25 KB
/
urls.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
<!DOCTYPE html>
<html>
<head>
<title>Urls</title>
<meta charset="utf-8">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet">
<script type="text/javascript" src="urls.js"></script>
<!-- <script src="https://cdnjs.cloudflare.com/ajax/libs/bootstrap-table/1.20.2/extensions/editable/bootstrap-table-editable.min.js%22%3E</script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/bootstrap3-editable/js/bootstrap-editable.min.js%22%3E</script> -->
<link type="text/css" rel="stylesheet" href="/style.css" />
</head>
<body>
<button class="btn btn-outline-dark" id="back">Back</button>
<div class="d-flex justify-content-center">
<input type="text" id="taskname" placeholder="Url">
</div>
<br>
<div class="d-flex justify-content-center">
<button class="btn btn-primary" id="add">Add</button>
</div>
<br>
<h2 class="text-center">Urls</h2>
<div class="container mt-3" style="width: 450px;">
<table class="table">
<tbody id="urls">
</tbody>
</table>
</div>
<div class="d-flex justify-content-center">
<button class="btn btn-primary" id="done">Remove</button>
</div>
</body>
</html>