uix-kit
Version:
A free web kits for fast web design and development, compatible with Bootstrap v5.
154 lines (95 loc) • 3.95 kB
HTML
<html lang="@@{website_lang}" dir="@@{website_dirLTR}">
<head>
<meta charset="@@{website_charset}" />
<title>Contact Form With Google Map - @@{website_title}</title>
@@include('./src/components/_global/include-header.html')
</head>
<body class="page">
@@include('./src/components/_global/include-loader.html')
@@include('./src/components/_global/include-toggle-trigger.html')
<div class="uix-wrapper">
<!-- Header Area
============================================= -->
<header class="uix-header__container">
<div class="uix-header">
<div class="container">
@@include('./src/components/_global/include-brand.html')
@@include('./src/components/_global/include-menu.html')
</div>
<!-- .container end -->
<div class="uix-clearfix"></div>
</div>
</header>
<div class="uix-header__placeholder js-uix-header__placeholder-autoheight"></div>
<main id="uix-maincontent">
<!-- Content
====================================================== -->
<section>
<section class="uix-spacing--s uix-spacing--no-top">
<style>
#map {
width: 100%;
height: 400px;
}
</style>
<div id="map"></div>
</section>
<div class="container">
<div class="row">
<div class="col-lg-6 col-md-6 uix-trans">
<h4>GET IN TOUCH</h4>
<p> At vero eos et accusamus et iusto odio dignissimos ducimus qui blanditiis praesentium voluptatum deleniti atque corrupti quos dolores et quas molestias excepturi sint occaecati cupiditate non provident, </p>
<hr>
<p> 438 Marine Parade
<br /> Elwood, Victoria
<br /> P.O Box 3184 </p>
<hr>
<p> <strong>E:</strong> hello@foundry.net
<br /> <strong>P:</strong> +614 3948 2726
<br /> </p>
</div>
<!-- .col-lg-6.col-md-6 end -->
<div class="col-lg-6 col-md-6 uix-trans">
<form method="post" action="#">
<div class="uix-controls is-fullwidth">
<input type="text" class="js-uix-float-label" name="author">
<label>Author</label>
</div>
<div class="uix-controls is-fullwidth">
<input type="email" class="js-uix-float-label" name="email">
<label>Email</label>
</div>
<div class="uix-controls uix-controls__textarea is-fullwidth">
<textarea name="comments" rows="5" class="js-uix-float-label"></textarea>
<label>Comments</label>
</div>
<div class="uix-controls">
<button type="submit" class="uix-btn uix-btn__border--thin uix-btn__size--s uix-btn__bg--primary">Submit</button>
</div>
</form>
</div>
<!-- .col-lg-6.col-md-6 end -->
</div>
<!-- .row end -->
</div>
<!-- .container end -->
</section>
</main>
@@include('./src/components/_global/include-copyright.html')
</div>
<!-- .uix-wrapper end -->
<!-- Google Map API
============================================= -->
<script>
function initMap() {
var mapDiv = document.getElementById('map');
var map = new google.maps.Map(mapDiv, {
center: {lat: 44.540, lng: -78.546},
zoom: 8
});
}
</script>
<script src='https://maps.googleapis.com/maps/api/js?key=AIzaSyA0kxSY0g5flUWptO4ggXpjhVB-ycdqsDk&ver=2.0&callback=initMap'></script>
<!-- Google Map API end -->
@@include('./src/components/_global/include-footer.html')