phoenix/templates/settings.html.tmpl

138 lines
4.3 KiB
Cheetah
Raw Normal View History

2023-04-06 10:36:11 +05:00
<!DOCTYPE html>
<html lang="en">
<head>
2023-11-02 21:20:10 +05:00
{{template "head" .}}
2023-04-09 11:33:34 +05:00
<link rel="stylesheet" href="assets/css/settings.css" />
2023-04-06 10:36:11 +05:00
</head>
<body>
<h1>Settings</h1>
<div class="actions">
<a href="/">
<img src="/assets/icons/solid/house.svg" width="20" height="20" /> Main page
</a>
<a href="/export">
<img src="/assets/icons/solid/file-export.svg" width="20" height="20" /> Export links
</a>
<a href="/import">
<img src="/assets/icons/solid/file-import.svg" width="20" height="20" /> Import links
</a>
</div>
2023-04-06 10:36:11 +05:00
{{range .groups}}
<h2 id="group-{{.ID}}">Group "{{.Name}}"</h2>
2023-04-09 11:55:08 +05:00
<div class="row">
<form method="POST" action="/groups/{{.ID}}/update" class="innerForm">
2023-04-09 11:55:08 +05:00
<input
value="{{.Name}}"
placeholder="Name"
name="groupName"
required
/>
<button
type="submit"
aria-label="Save the group"
>
2023-04-09 11:55:08 +05:00
<img src="/assets/svg/floppy-disk-solid.svg" width="16px" height="16px" />
</button>
</form>
<form method="POST" action="/groups/{{.ID}}/delete">
<button
type="submit"
aria-label="Delete the group"
>
2023-04-09 11:55:08 +05:00
<img src="/assets/svg/trash-solid.svg" width="16px" height="16px" />
</button>
</form>
</div>
2023-04-06 10:36:11 +05:00
{{range .Links}}
<div class="row" id="link-{{.ID}}">
<form method="POST" action="/links/{{.ID}}/update" class="innerForm">
<input
class="small-row"
value="{{ if .Icon }}{{ .Icon }}{{ end }}"
name="icon"
placeholder="Icon"
/>
<input
class="small-row"
value="{{.Name}}"
name="linkName"
placeholder="Name"
required
/>
<input
value="{{.Href}}"
name="href"
placeholder="Href"
required
/>
<button
type="submit"
aria-label="Save the link"
>
<img src="/assets/svg/floppy-disk-solid.svg" width="16px" height="16px" />
</button>
</form>
<form method="POST" action="/links/{{.ID}}/delete">
<button
type="submit"
aria-label="Delete the link"
>
<img src="/assets/svg/trash-solid.svg" width="16px" height="16px" />
</button>
</form>
2023-04-06 10:36:11 +05:00
</div>
{{end}}
<form action="/links" method="POST" class="row">
2023-04-06 10:36:11 +05:00
<input
2023-09-03 19:08:33 +05:00
class="small-row"
name="icon"
placeholder="Icon"
/>
<input
class="small-row"
2023-04-06 10:36:11 +05:00
placeholder="Name"
name="linkName"
required
/>
<input
placeholder="Href"
name="href"
type="url"
required
/>
<input
type="hidden"
name="groupID"
value="{{.ID}}"
readonly
/>
<button
type="submit"
aria-label="Create a new link"
>
2023-04-06 10:36:11 +05:00
<img src="/assets/svg/plus-solid.svg" width="16px" height="16px" />
</button>
</form>
{{end}}
<h2>New group</h2>
<form method="POST" action="/groups" class="row">
2023-04-06 10:36:11 +05:00
<input
placeholder="Name"
name="groupName"
required
/>
<button
type="submit"
aria-label="Create a new group"
>
2023-04-06 10:36:11 +05:00
<img src="/assets/svg/plus-solid.svg" width="16px" height="16px" />
</button>
</form>
</body>
</html>