blob: 0fc003587f3a8b32a5bca95f529b065ab3b48a46 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
<!DOCTYPE html>
<html>
<head>
<title>{{.Title}}</title>
</head>
<body>
<h1>{{.Title}}</h1>
<p>{{.Content}}</p>
<hr>
<h2>Edit Blog</h2>
<form method="POST" action="/blogs/{{.ID}}">
<input type="hidden" name="_method" value="PUT">
<label>Title:</label><br>
<input type="text" name="title" value="{{.Title}}"><br>
<label>Content:</label><br>
<textarea name="content">{{.Content}}</textarea><br>
<input type="submit" value="Update">
</form>
<form method="POST" action="/blogs/{{.ID}}">
<input type="hidden" name="_method" value="DELETE">
<input type="submit" value="Delete">
</form>
</body>
</html>
|