Update security headers and contact form
This commit is contained in:
+16
-23
@@ -1,23 +1,16 @@
|
||||
# Contact Us
|
||||
|
||||
## Get in Touch
|
||||
|
||||
Have a question or need a quote? We'd love to hear from you!
|
||||
|
||||
### Email
|
||||
|
||||
Email: [contact@satware.ai](mailto:contact@satware.ai)
|
||||
|
||||
### Phone
|
||||
|
||||
+1 (555) 123-4567
|
||||
|
||||
### Social Media
|
||||
|
||||
- [LinkedIn](https://linkedin.com/company/satware-ai)
|
||||
- [Twitter](https://twitter.com/satware_ai)
|
||||
- [GitHub](https://github.com/satware-ai)
|
||||
|
||||
### Contact Form
|
||||
|
||||
[insert contact form code if needed, but typically MkDocs uses a simple form or integrates with a service like Formspree]
|
||||
## Contact Us
|
||||
<form name="contact" netlify>
|
||||
<div>
|
||||
<label for="name">Name</label>
|
||||
<input type="text" id="name" name="name" required>
|
||||
</div>
|
||||
<div>
|
||||
<label for="email">Email</label>
|
||||
<input type="email" id="email" name="email" required>
|
||||
</div>
|
||||
<div>
|
||||
<label for="message">Message</label>
|
||||
<textarea id="message" name="message" required></textarea>
|
||||
</div>
|
||||
<button type="submit">Send</button>
|
||||
</form>
|
||||
|
||||
+2
-2
@@ -5,7 +5,7 @@
|
||||
[headers]
|
||||
for = "/*"
|
||||
[headers.values]
|
||||
Content-Security-Policy = "default-src 'self'; script-src 'self' 'unsafe-inline'; style-src 'self' 'unsafe-inline'"
|
||||
Content-Security-Policy = "default-src 'self'; script-src 'self'; style-src 'self'; frame-ancestors 'none';"
|
||||
X-Frame-Options = "DENY"
|
||||
Strict-Transport-Security = "max-age=31536000"
|
||||
Referrer-Policy = "strict-origin"
|
||||
Referrer-Policy = "strict-origin-when-cross-origin"
|
||||
|
||||
Reference in New Issue
Block a user