-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathapp.html
More file actions
111 lines (103 loc) · 4.36 KB
/
app.html
File metadata and controls
111 lines (103 loc) · 4.36 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Laravel Quickstart - Basic</title>
<!-- Fonts -->
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Lato:100,300,400,700" rel="stylesheet">
<!-- Styles -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css" rel="stylesheet">
<style>
body {
font-family: 'Lato';
}
</style>
</head>
<body id="app-layout">
<nav class="navbar navbar-expand-lg navbar-light bg-light">
<div class="container">
<a class="navbar-brand" href="#">
Task List
</a>
</div>
</nav>
<div class="container mt-4">
<div class="offset-md-2 col-md-8">
<div class="card">
<div class="card-header">
New Task
</div>
<div class="card-body">
<!-- New Task Form -->
<form action="#" method="POST">
<!-- Task Name -->
<div class="mb-3">
<label for="task-name" class="form-label">Task</label>
<input type="text" name="name" id="task-name" class="form-control" value="">
</div>
<!-- Add Task Button -->
<div>
<button type="submit" class="btn btn-primary">
<i class="fa fa-plus me-2"></i>Add Task
</button>
</div>
</form>
</div>
</div>
<!-- Current Tasks -->
<div class="card mt-4">
<div class="card-header">
Current Tasks
</div>
<div class="card-body">
<table class="table table-striped">
<thead>
<tr>
<th>Task</th>
<th>Actions</th>
</tr>
</thead>
<tbody>
<tr>
<td>Task 1</td>
<td>
<form action="#" method="POST" class="d-inline">
<button type="submit" class="btn btn-danger">
<i class="fa fa-trash me-2"></i>Delete
</button>
</form>
</td>
</tr>
<tr>
<td>Task 2</td>
<td>
<form action="#" method="POST" class="d-inline">
<button type="submit" class="btn btn-danger">
<i class="fa fa-trash me-2"></i>Delete
</button>
</form>
</td>
</tr>
<tr>
<td>Task 3</td>
<td>
<form action="#" method="POST" class="d-inline">
<button type="submit" class="btn btn-danger">
<i class="fa fa-trash me-2"></i>Delete
</button>
</form>
</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
</div>
<!-- JavaScripts -->
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/js/bootstrap.bundle.min.js"></script>
</body>
</html>