File: /var/www/html/shootinschool/wp-content/plugins/shootin-school-plugin/custom-login-template.php
<?php
/*
Template Name: Custom Admin Login Template
*/
// Your custom HTML and PHP code goes here
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Shootin School Basketball</title>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@3.4.1/dist/css/bootstrap.min.css" integrity="sha384-HSMxcRTRxnN+Bdg0JdbxYKrThecOKuH5zCYotlSAcp1+c8xmyTe9GYg1l9a69psu" crossorigin="anonymous">
<link rel="stylesheet" href="./css/login.css">
</head>
<body>
<section class="login-wrapper">
<div class="custom-wrp container">
<div class="login-left-col">
<div class="content-area-wrp">
<!-- <h2 class="title-main">Lorem <span>ipusm</span></h2>
<p class="content">Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled</p> -->
</div>
</div>
<div class="login-right-col">
<div class="logo-wrp">
<img src="./img/logo.png" alt="logo">
</div>
<div class="login-form-blk">
<h2 class="form-title">Welcome <span>Back!</span></h2>
<form action="">
<div class="form-group">
<label class="form-label" for="">Email Address/ Phone Number</label>
<div class="input-group">
<span class="icon"><img src="./img/login-mail-icon.svg"></span>
<input type="text" class="form-control" placeholder="Bradleyrobin@gmail.com">
</div>
</div>
<div class="form-group">
<label class="form-label" for="">Email Address/ Phone Number</label>
<div class="input-group">
<span class="icon"><img src="./img/login-password-icon.svg"></span>
<input type="password" class="form-control" placeholder="password">
</div>
</div>
<button class="btn form-btn-cta">Sign in</button>
</form>
</div>
<div class="usr-action-blk">
<div class="chk-blk">
<label class="custom-chk-box">
<input type="checkbox" checked="checked">
<span class="checkmark"></span>
Remember me
</label>
</div>
<div class="forgot-blk">
<a href="" class="link">Forgot Password?</a>
</div>
</div>
<ul class="login-blk-ftr">
<li><a class="links">Terms and Conditions</a></li>
<li><a class="links">Privacy and Policy</a></li>
</ul>
</div>
</div>
<footer class="login-footer">
<div class="container custom-wrp">
<div class="ftr-txt">© Copyright 2023 Shootin school</div>
</div>
</footer>
</section>
</body>
</html>