Files
WrenchBoradWeb/www/application/views/site3/external/view_vemail.php
T
2022-03-20 20:11:29 -04:00

86 lines
3.8 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">Username/Email</label>
<input class="form-control form-control-lg form-control-solid" type="text" name="username" placeholder="Username" value='<?php echo $email; ?>' required="required" readonly autocomplete="off" />
</div>
<div class="fv-row mb-10">
<div class="d-flex flex-stack mb-2">
</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>
<!--end::Actions-->
</form>
<!--end::Form-->
</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>
</body>
<!--end::Body-->
</html>