A webmail client. Forked from https://git.sr.ht/~migadu/alps
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

26 lines
502 B

  1. {{template "head.html"}}
  2. <h1>alps</h1>
  3. <p>
  4. <a href="/contacts">Back</a>
  5. </p>
  6. <h2>
  7. {{if .Card}}Edit{{else}}Create{{end}} contact
  8. </h2>
  9. <form method="post">
  10. <label for="fn">Name:</label>
  11. <input type="text" name="fn" id="fn" value="{{.Card.PreferredValue "FN"}}">
  12. <br>
  13. <label for="emails">E-mails:</label>
  14. <input type="email" name="emails" id="emails" multiple value="{{join (.Card.Values "EMAIL") ", "}}">
  15. <br>
  16. <input type="submit" value="Save">
  17. </form>
  18. {{template "foot.html"}}