aboutsummaryrefslogtreecommitdiff
path: root/plugins/carddav/public/update-address-object.html
blob: b0ab20f9394c236f18dadcca22da795d5e189b90 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{{template "head.html"}}

<h1>koushin</h1>

<p>
  <a href="/contacts">Back</a>
</p>

<h2>Edit contact</h2>

<form method="post">
  <label for="fn">Name:</label>
  <input type="text" name="fn" id="fn" value="{{.Card.PreferredValue "FN"}}">
  <br>

  <label for="emails">E-mails:</label>
  <input type="email" name="emails" id="emails" multiple value="{{join (.Card.Values "EMAIL") ", "}}">
  <br>

  <input type="submit" value="Save">
</form>

{{template "foot.html"}}