| 1 | input#modalContact.modal(type="checkbox") |
| 2 | div(role="dialog" aria-labelledby="contactTitle") |
| 3 | form.card.smallpad |
| 4 | label.modal-close(for="modalContact") |
| 5 | h3#contactTitle.section= translations["Contact form"] |
| 6 | fieldset |
| 7 | label(for="userEmail")= translations["Email"] |
| 8 | input#userEmail(type="email") |
| 9 | fieldset |
| 10 | label(for="mailSubject")= translations["Subject"] |
| 11 | input#mailSubject(type="text") |
| 12 | fieldset |
| 13 | label(for="mailContent")= translations["Content"] |
| 14 | br |
| 15 | textarea#mailContent |
| 16 | fieldset |
| 17 | button(type="button" onClick="trySendMessage()") Send |
| 18 | p#emailSent= translations["Email sent!"] |