aboutsummaryrefslogtreecommitdiff
path: root/themes/alps/update-address-object.html
blob: 1b73600c3ae2318410d55073066382179069ea46 (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
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
{{template "head.html" .}}
{{template "nav.html" .}}

<div class="page-wrap">
  <aside>
    <a href="/contacts/create" class="new active">New contact</a>
    <!-- TODO: fetch list of address books -->
    <a href="#">{{.AddressBook.Name}}</a>
    <a href="#">Personal</a>
  </aside>

  <div class="container">
    <main class="create-update">
      <form method="post">
        <h2>
          {{if .Card}}Edit{{else}}Create{{end}} contact
        </h2>

        <label>
          <span>Name</span>
          <input type="text" name="fn" id="fn" value="{{.Card.PreferredValue "FN"}}" />
        </label>
        <label>
          <span>Email addresses</span>
          <input
            type="email"
            name="emails"
            id="emails"
            value="{{join (.Card.Values "EMAIL") ", "}}"
            multiple />
        </label>

        <div class="actions">
          <button type="submit">Save</button>
          <a class="button-link" href="/contacts">Cancel</a>
        </div>
      </form>
    </main>
  </div>
</div>

{{template "foot.html"}}