我正在使用CMS Lektor。我需要提供一份联系表格。
包含它的最佳方法是什么?
答案 0 :(得分:0)
答案 1 :(得分:0)
我已经使用了Formspree,并且效果很好。以下是我用于联系表单的Lektor content.lr 文件的代码:
_model: page
---
title: Contact
---
body:
<form method="POST" action="https://formspree.io/whatever.email.you.want.to.use@gmail.com">
<div class="field">
<label class="label">Name</label>
<div class="control">
<input class="input" type="email" name="email" placeholder="Your email">
</div>
</div>
<div class="field">
<label class="label">Message</label>
<div class="control">
<textarea class="textarea" name="message" placeholder="Your message"></textarea>
</div>
</div>
<div class="field">
<div class="control">
<button class="button is-link" type="submit">Send</button>
</div>
</div>
我的实时联系表为here
大礼包也有一些不错的示例:https://formspree.io/library