12345678910111213141516171819202122232425 |
- <html>
- <head>
- <title>gildas.ch</title>
- <link href="https://fonts.googleapis.com/css2?family=Roboto&display=swap" rel="stylesheet">
- <link rel="stylesheet" href="/style.css">
- </head>
- <body>
- {{ range $e := .Errors }}
- <div class="error">{{ $e }}</div>
- {{ end }}
- <h1>{{ .List.Title }}</h1>
- {{ .Description }}
- <form method="post">
- <p>Update list: <input type="submit" /><br />
- <input type="text" name="title" value="{{ .List.Title }}" /><br />
- <textarea name="description" style="width:90%;height:500px;">{{ .List.Description }}</textarea>
- </p>
- </form>
- </body>
- </html>
|