-
Notifications
You must be signed in to change notification settings - Fork 0
/
crud.html
43 lines (38 loc) · 1.15 KB
/
crud.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Post CRUD</title>
<link href="images/favicon.ico" rel="icon">
<script type="module" src="blog.js"></script>
<template id="create_template">
<div id="create_div">
<dialog open>
<label for="title">Title: </label>
<input type="text" id="title" name="title">
<br>
<label for="date">Date: </label>
<input type="date" id="date" name="date">
<br>
<label for="summary">Summary: </label>
<textarea id="summary" name="summary" rows="4" cols="24"></textarea>
<br><br>
<button type="button" id="create_save">Save</button>
<button type="button" id="create_cancel">Cancel</button>
</dialog>
</div>
</template>
</head>
<body>
<header>
<h1>List of Posts with CRUD</h1>
</header>
<div id="list">
<ul id="container">
</ul>
</div>
<button type="button" id="create_button">Create Post</button>
<br>
<div id="dialog_place"></div>
</body>
</html>