aboutsummaryrefslogtreecommitdiff
path: root/templates/entry.tmpl
blob: 642b501f4d8617806408596d851b0434e4fd2035 (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
{{ define "entry" }}
{{ template "_head" }}
{{ if (eq .ID 0) }}
<form action="/entries" method="POST">
{{ else }}
<form action="/entries/{{ .ID }}" method="POST">
{{ end }}
  <input type="hidden" id="ID" name="ID" value="{{ .ID }}">
  <label for="title">
    Title
    <input type="text" id="Title" name="Title" value="{{ .Title }}" placeholder="Give a discretive name" required>
  </label>
  <label for="link">
    Link
    <input type="text" id="Link" name="Link" value="{{ .Link }}" placeholder="Paste a valid youtube-dl link" required>
  </label>
  <label for="output">
    Output folder
    <input type="text" id="OutputFolder" name="OutputFolder" value="{{ .OutputFolder }}" placeholder="Select a ralative folder" required>
  </label>
  <button type="submit">Submit</button>
</form>
{{ template "_footer" }}
{{ end }}