mirror of
https://github.com/Rushilwiz/brancher.git
synced 2025-04-17 02:20:18 -04:00
63 lines
2.6 KiB
HTML
63 lines
2.6 KiB
HTML
<!DOCTYPE html>
|
|
|
|
<html>
|
|
<script src="https://use.fontawesome.com/releases/v5.13.0/js/all.js" crossorigin="anonymous"></script>
|
|
<link href="https://fonts.googleapis.com/css?family=Montserrat:400,700" rel="stylesheet" type="text/css" />
|
|
<link href="https://fonts.googleapis.com/css?family=Droid+Serif:400,700,400italic,700italic" rel="stylesheet" type="text/css" />
|
|
<link href="https://fonts.googleapis.com/css?family=Roboto+Slab:400,100,300,700" rel="stylesheet" type="text/css" />
|
|
<link href="influencecompstyle.css" rel="stylesheet" />
|
|
<head>
|
|
<title>Brancher Contact</title>
|
|
<link rel="icon" type="image/x-icon" href="./css/res/white_on_black.svg" />
|
|
|
|
</head>
|
|
<body>
|
|
<form
|
|
action="https://formspree.io/xlepwbwz"
|
|
method="POST"
|
|
>
|
|
<label>
|
|
Your email:
|
|
<input type="text" name="_replyto">
|
|
</label>
|
|
<label>
|
|
Your message:
|
|
<textarea name="message"></textarea>
|
|
</label>
|
|
|
|
<!-- your other form fields go here -->
|
|
|
|
<button type="submit">Send</button>
|
|
</form>
|
|
</body>
|
|
</html>
|
|
|
|
<form id="contactForm" name="sentMessage" novalidate="novalidate">
|
|
<div class="row align-items-stretch mb-5">
|
|
<div class="col-md-6">
|
|
<div class="form-group">
|
|
<input class="form-control" id="name" type="text" placeholder="Your Name *" required="required" data-validation-required-message="Please enter your name." />
|
|
<p class="help-block text-danger"></p>
|
|
</div>
|
|
<div class="form-group">
|
|
<input class="form-control" id="email" type="email" placeholder="Your Email *" required="required" data-validation-required-message="Please enter your email address." />
|
|
<p class="help-block text-danger"></p>
|
|
</div>
|
|
<div class="form-group mb-md-0">
|
|
<input class="form-control" id="phone" type="tel" placeholder="Your Phone *" required="required" data-validation-required-message="Please enter your phone number." />
|
|
<p class="help-block text-danger"></p>
|
|
</div>
|
|
</div>
|
|
<div class="col-md-6">
|
|
<div class="form-group form-group-textarea mb-md-0">
|
|
<textarea class="form-control" id="message" placeholder="Your Message *" required="required" data-validation-required-message="Please enter a message."></textarea>
|
|
<p class="help-block text-danger"></p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="text-center">
|
|
<div id="success"></div>
|
|
<button class="btn btn-primary btn-xl text-uppercase" id="sendMessageButton" type="submit">Send Message</button>
|
|
</div>
|
|
</form>
|