Files
WrenchBoradWeb/www/application/views/site3/external/view_home.php
T
2022-08-28 19:02:25 -04:00

109 lines
5.7 KiB
PHP

<!DOCTYPE html>
<html lang="en">
<head>
<meta name="title" content="WrenchBoard: Find a Freelancer | Sell Professional Services" />
<?php include("header_contents.php");?>
</head>
<body id="kt_body" class="bg-body">
<script>
(function (i, s, o, g, r, a, m) {
i['GoogleAnalyticsObject'] = r;
i[r] = i[r] || function () {
(i[r].q = i[r].q || []).push(arguments)
}, i[r].l = 1 * new Date();
a = s.createElement(o),
m = s.getElementsByTagName(o)[0];
a.async = 1;
a.src = g;
m.parentNode.insertBefore(a, m)
})(window, document, 'script', 'https://www.google-analytics.com/analytics.js', 'ga');
ga('create', 'UA-54829827-4', 'auto');
ga('send', 'pageview');
</script>
<div class="d-flex flex-column flex-root">
<div class="d-flex flex-column flex-column-fluid bgi-position-y-bottom position-x-center bgi-no-repeat bgi-size-contain bgi-attachment-fixed" style="background-image: url(site3/assets/media/background/home.jpg">
<div class="d-flex flex-center flex-column flex-column-fluid p-10 pb-lg-20">
<a href="#" class="mb-12">
<img alt="WrenchBoard" src="/assets/ext/images/wrenchboard.png" class="h-40px" />
</a>
<div class="w-lg-500px bg-body rounded shadow-sm p-10 p-lg-15 mx-auto">
<form class="form w-100" action="/login" method="POST">
<div class="text-center mb-10">
<h1 class="text-dark mb-3">Sign In to WrenchBoard</h1>
<div class="text-gray-400 fw-bold fs-4">New Here?
<a href="/signup" class="link-primary fw-bolder">Create an Account</a></div>
</div>
<div class="fv-row mb-10">
<label class="form-label fs-6 fw-bolder text-dark">Email</label>
<input class="form-control form-control-lg form-control-solid" type="text" placeholder="Username" name="username" required="required" autocomplete="off" />
</div>
<div class="fv-row mb-10">
<div class="d-flex flex-stack mb-2">
<label class="form-label fw-bolder text-dark fs-6 mb-0">Password</label>
<a href="/password_recovery" class="link-primary fs-6 fw-bolder">Forgot Password ?</a>
</div>
<input class="form-control form-control-lg form-control-solid" type="password" placeholder="Password" name="password" required="required" autocomplete="off" />
</div>
<?php
if ( isset($login_message) && $login_message !=''){
?>
<div class="fv-row mb-10">
<?php echo isset($login_message)?$login_message:''; ?>
<div class="d-flex flex-stack mb-2"></div>
</div>
<?php
}
?>
<div class="text-center">
<button type="submit" id="kt_sign_in_submit" class="btn btn-lg btn-primary w-100 mb-5">
<span class="indicator-label">Continue</span>
<span class="indicator-progress">Please wait...
<span class="spinner-border spinner-border-sm align-middle ms-2"></span></span>
</button>
<div class="text-center text-muted text-uppercase fw-bolder mb-5">or</div>
<!--begin::Google link-->
<a href="<?php echo isset($login_links)?$login_links['Google']:'#'; ?>" class="btn btn-flex flex-center btn-light btn-lg w-100 mb-5">
<img alt="Logo" src="/site3/assets/media/svg/brand-logos/google-icon.svg" class="h-20px me-3" />Continue with Google</a -->
<!--end::Google link-->
<!--begin::Facebook link-->
<a href="<?php echo $this->lib_login->getLoginUrl(); ?>" class="btn btn-flex flex-center btn-light btn-lg w-100 mb-5">
<img alt="Logo" src="/site3/assets/media/svg/brand-logos/facebook-4.svg" class="h-20px me-3" />Continue with Facebook</a>
<!--end::Facebook link-->
<!--begin::Apple link-->
<a href="<?php echo isset($login_links)?$login_links['Apple']:'#'; ?>" class="btn btn-flex flex-center btn-light btn-lg w-100">
<img alt="Logo" src="/site3/assets/media/svg/brand-logos/apple-black.svg" class="h-20px me-3" />Continue with Apple</a>
<!--end::Apple link-->
<?php /* echo isset($login_links) ? $login_links :''; */ ?>
</div>
<!--end::Actions-->
</form>
<!--end::Form-->
<div class=" form-label fw-bolder text-dark fs-6 mb-0 text-center" style="padding-top: 20px;">
This site is protected by hCaptcha and the our Privacy Policy and Terms of Service apply.
</div>
</div>
<!--end::Wrapper-->
</div>
<!--end::Content-->
<!--begin::Footer-->
<?php include("footer_links.php");?>
</div>
</div>
<script src="/site3/assets/plugins/global/plugins.bundle.js"></script>
<script src="/site3/assets/js/scripts.bundle.js"></script>
<script src="/site3/assets/js/custom/home/general.js"></script>
<script>var LHC_API = LHC_API||{};
LHC_API.args = {mode:'widget',lhc_base_url:'//chat.dev.wrenchboard.com/',wheight:450,wwidth:350,pheight:520,pwidth:500,leaveamessage:true,check_messages:false};
(function() {
var po = document.createElement('script'); po.type = 'text/javascript'; po.setAttribute('crossorigin','anonymous'); po.async = true;
var date = new Date();po.src = '//chat.dev.wrenchboard.com/design/defaulttheme/js/widgetv2/index.js?'+(""+date.getFullYear() + date.getMonth() + date.getDate());
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(po, s);
})();
</script>
</body>
</html>