Linux ip-172-26-7-228 5.4.0-1103-aws #111~18.04.1-Ubuntu SMP Tue May 23 20:04:10 UTC 2023 x86_64
Your IP : 18.220.226.147
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<title>Harsha Institutions</title>
<!-- Font Icon -->
<link
rel="stylesheet"
href="../fonts/material-icon/css/material-design-iconic-font.min.css"
/>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
<link rel="icon" href="../images/hcon_logo.png" sizes="32x32" />
<style>
body {
background-image: url(../images/bglogo.jpeg);
background-repeat: no-repeat;
background-size: cover;
font-family: Arial, sans-serif;
}
.container {
position: absolute;
top: 35%;
left: 85%;
transform: translate(-50%, -50%);
width: 60%;
max-width: 300px;
background: #002e5d;
padding: 20px;
border-radius: 10px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
color: #fff;
}
.form-title {
font-size: 24px;
text-align: center;
margin-bottom: 20px;
color: #fff;
}
.form-group {
margin-bottom: 15px;
position: relative;
}
.form-group input,
.form-group select {
width: 100%;
padding: 10px;
border: none;
border-radius: 5px;
background: #fff;
color: #000;
font-size: 14px;
}
.form-row {
display: flex;
gap: 10px;
}
.form-row .form-group {
flex: 1;
}
.form-group label {
position: absolute;
top: -10px;
left: 10px;
font-size: 12px;
background: #002e5d;
padding: 0 5px;
color: #fff;
}
.form-group input[type="checkbox"] {
width: auto;
}
.form-group button {
width: 100%;
padding: 10px;
border: none;
background: #00bcd4;
color: #fff;
font-size: 16px;
border-radius: 5px;
cursor: pointer;
transition: background 0.3s;
}
.form-group button:hover {
background: #019ba0;
}
.checkbox-label {
color: #fff;
font-size: 14px;
margin-left: 5px;
}
.signin-image-link {
display: block;
text-align: center;
margin-top: 15px;
color: #00bcd4;
text-decoration: none;
}
.signin-image-link:hover {
text-decoration: underline;
}
</style>
</head>
<body>
<header>
<img
src="../images/hcon_logo.png"
style="width: 180px; height: 100px; margin-left: 6px"
/>
</header>
<div class="container">
<h2 class="form-title">Admin Login</h2>
<form method="POST" class="register-form" id="register-form">
<div class="form-group">
<input
type="text"
name="fmob"
id="fmob"
placeholder="Enter Email Id"
style="width: 95%"
/>
</div>
<div class="form-group">
<input
type="password"
name="your_pass"
id="fpwd"
placeholder="Enter Password"
style="width: 95%"
/>
</div>
<div class="form-group">
<button type="submit" id="signin" onclick="loginAdm(event)">
Log In
</button>
</div>
</div>
</form>
</div>
<script src="../js/signin_rr.js"></script>
<script src="//cdn.jsdelivr.net/npm/sweetalert2@11"></script>
</script>
</body>
</html>
|