113 lines
4.3 KiB
PHP
113 lines
4.3 KiB
PHP
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta content="width=device-width, initial-scale=1, maximum-scale=1, shrink-to-fit=no"
|
|
name="viewport">
|
|
<title>Subscribe — Stisla</title>
|
|
|
|
<!-- General CSS Files -->
|
|
<link rel="stylesheet"
|
|
href="{{ asset('library/bootstrap/dist/css/bootstrap.min.css') }}">
|
|
<link rel="stylesheet"
|
|
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.1/css/all.min.css"
|
|
integrity="sha512-KfkfwYDsLkIlwQp6LFnl8zNdLGxu9YAA1QvwINks4PhcElQSvqcyVLLD9aMhXd13uQjoXtEKNosOWaZqXgel0g=="
|
|
crossorigin="anonymous"
|
|
referrerpolicy="no-referrer" />
|
|
|
|
<!-- CSS Libraries -->
|
|
|
|
<!-- Template CSS -->
|
|
<link rel="stylesheet"
|
|
href="{{ asset('css/style.css') }}">
|
|
<link rel="stylesheet"
|
|
href="{{ asset('css/components.css') }}">
|
|
|
|
<!-- Start GA -->
|
|
<script async
|
|
src="https://www.googletagmanager.com/gtag/js?id=UA-94034622-3"></script>
|
|
<script>
|
|
window.dataLayer = window.dataLayer || [];
|
|
|
|
function gtag() {
|
|
dataLayer.push(arguments);
|
|
}
|
|
gtag('js', new Date());
|
|
|
|
gtag('config', 'UA-94034622-3');
|
|
</script>
|
|
<!-- /END GA -->
|
|
</head>
|
|
|
|
<body>
|
|
<div id="app">
|
|
<section class="section">
|
|
<div class="container mt-5">
|
|
<div class="row">
|
|
<div
|
|
class="col-12 col-sm-10 offset-sm-1 col-md-8 offset-md-2 col-lg-8 offset-lg-2 col-xl-6 offset-xl-3">
|
|
<div class="login-brand">
|
|
Stisla
|
|
</div>
|
|
|
|
<div class="card card-primary">
|
|
<div class="card-header">
|
|
<h4>Subscribe Our Newsletters</h4>
|
|
</div>
|
|
|
|
<div class="card-body">
|
|
<form method="POST">
|
|
<div class="form-group">
|
|
<div class="input-group">
|
|
<div class="input-group-prepend">
|
|
<div class="input-group-text">
|
|
<i class="fas fa-envelope"></i>
|
|
</div>
|
|
</div>
|
|
<input id="email"
|
|
type="email"
|
|
class="form-control"
|
|
name="email"
|
|
autofocus
|
|
placeholder="Email">
|
|
</div>
|
|
</div>
|
|
|
|
<div class="form-group text-center">
|
|
<button type="submit"
|
|
class="btn btn-lg btn-round btn-primary">
|
|
Subscribe
|
|
</button>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
<div class="simple-footer">
|
|
Copyright © Stisla 2018
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
</div>
|
|
|
|
<!-- General JS Scripts -->
|
|
<script src="{{ asset('library/jquery/dist/jquery.min.js') }}"></script>
|
|
<script src="{{ asset('library/popper.js/dist/umd/popper.js') }}"></script>
|
|
<script src="{{ asset('library/tooltip.js/dist/umd/tooltip.js') }}"></script>
|
|
<script src="{{ asset('library/bootstrap/dist/js/bootstrap.min.js') }}"></script>
|
|
<script src="{{ asset('library/jquery.nicescroll/dist/jquery.nicescroll.min.js') }}"></script>
|
|
<script src="{{ asset('library/moment/min/moment.min.js') }}"></script>
|
|
<script src="{{ asset('js/stisla.js') }}"></script>
|
|
|
|
<!-- JS Libraies -->
|
|
|
|
<!-- Page Specific JS File -->
|
|
|
|
<!-- Template JS File -->
|
|
<script src="{{ asset('js/scripts.js') }}"></script>
|
|
<script src="{{ asset('js/custom.js') }}"></script>
|
|
|
|
</html>
|