| <!-- |
| Licensed to the Apache Software Foundation (ASF) under one or more |
| contributor license agreements. See the NOTICE file distributed with |
| this work for additional information regarding copyright ownership. |
| The ASF licenses this file to You under the Apache License, Version 2.0 |
| (the "License"); you may not use this file except in compliance with |
| the License. You may obtain a copy of the License at |
| |
| http://www.apache.org/licenses/LICENSE-2.0 |
| |
| Unless required by applicable law or agreed to in writing, software |
| distributed under the License is distributed on an "AS IS" BASIS, |
| WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| See the License for the specific language governing permissions and |
| limitations under the License. |
| --> |
| <!DOCTYPE html> |
| <html lang="it"> |
| <head> |
| <meta charset="UTF-8"> |
| <meta name="viewport" content="width=device-width, initial-scale=1"> |
| <title>Get In Touch</title> |
| <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" rel="stylesheet"> |
| </head> |
| <body> |
| <nav class="navbar navbar-dark bg-dark"> |
| <div class="container"> |
| <a class="navbar-brand" href="#">Apache OpenServerless™ Tutorial</a> |
| </div> |
| </nav> |
| |
| <div class="container d-flex justify-content-center align-items-center" style="min-height: 80vh;"> |
| <div class="w-50 p-4 border rounded bg-light shadow"> |
| <h2 class="text-center mb-4">Get In Touch</h2> |
| |
| <form method="POST" action="/api/v1/web/opstutorial/contact/submit-write" enctype="application/x-www-form-urlencoded"> |
| <div class="mb-3"> |
| <label for="name" class="form-label">Name</label> |
| <input type="text" class="form-control" id="name" name="name" placeholder="Insert your name"> |
| </div> |
| <div class="mb-3"> |
| <label for="email" class="form-label">Email</label> |
| <input type="email" class="form-control" id="email" name="email" placeholder="Insert your email"> |
| </div> |
| <div class="mb-3"> |
| <label for="phone" class="form-label">Phone Number</label> |
| <input type="tel" class="form-control" id="phone" name="phone" placeholder="Insert you phone number"> |
| </div> |
| <div class="mb-3"> |
| <label for="message" class="form-label">Message</label> |
| <textarea class="form-control" id="message" name="message" rows="4" placeholder="Type here your message"></textarea> |
| </div> |
| <button type="submit" class="btn btn-primary w-100">Send !</button> |
| </form> |
| </div> |
| </div> |
| |
| <script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/js/bootstrap.bundle.min.js"></script> |
| </body> |
| </html> |