ContactBridge

Log | Files | Refs | README

demo.html (677B)


      1 <!DOCTYPE html>
      2 <html lang="en">
      3 <head>
      4     <meta charset="UTF-8">
      5     <meta name="viewport" content="width=device-width, initial-scale=1.0">
      6     <title>Contact Form</title>
      7 </head>
      8 <body>
      9     <h2>Contact Form</h2>
     10     <form action="/api/contact" method="post">
     11         <label for="name">Name:</label><br>
     12         <input type="text" id="name" name="name" required><br>
     13 
     14         <label for="email">Email:</label><br>
     15         <input type="email" id="email" name="email" required><br>
     16 
     17         <label for="content">Message:</label><br>
     18         <textarea id="content" name="content" required></textarea><br>
     19 
     20         <input type="submit" value="Submit">
     21     </form>
     22 </body>
     23 </html>