50 lines
2.6 KiB
Plaintext
50 lines
2.6 KiB
Plaintext
<%--
|
|
Document : AdminLogin
|
|
Created on : 08-11-2018, 21:08:22
|
|
Author : install1
|
|
--%>
|
|
|
|
<%@page contentType="text/html" pageEncoding="windows-1252"%>
|
|
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
|
|
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js" type="text/javascript"></script>
|
|
<script src="https://code.jquery.com/jquery-3.2.1.slim.min.js" integrity="sha384-KJ3o2DKtIkvYIK3UENzmM7KCkRr/rE9/Qpg6aAZGJwFDMVNA/GpGFF93hXpG5KkN" crossorigin="anonymous"></script>
|
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js" integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q" crossorigin="anonymous"></script>
|
|
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js" integrity="sha384-JZR6Spejh4U02d8jOt6vLEHfe/JQGiRRSQQxSfFWpi1MquVdAyjUar5+76PVCmYl" crossorigin="anonymous"></script>
|
|
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
|
|
<title>Admin Login</title>
|
|
</head>
|
|
<body>
|
|
<div class="text-center">
|
|
<button type="button" class="btn btn-info" onclick="GetFrontPage()">Overview</button>
|
|
<br>
|
|
<br>
|
|
<form id="1112" name="Authenticatelogin" action="FrontController" method="POST">
|
|
<input type="hidden" name="command" value="Authenticatelogin">
|
|
<div class="container">
|
|
<label for="uname"><b>Username</b></label>
|
|
<input type="text" placeholder="Enter Username" name="uname" required>
|
|
<label for="psw"><b>Password</b></label>
|
|
<input type="password" placeholder="Enter Password" name="psw" required>
|
|
<button class="btn btn-primary" onclick="AuthenticateLogin()" >Login</button>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
<SCRIPT LANGUAGE="JavaScript">
|
|
function GetFrontPage()
|
|
{
|
|
document.getElementById('1111').submit();
|
|
}
|
|
function AuthenticateLogin()
|
|
{
|
|
document.getElementById('1112').submit();
|
|
}
|
|
</SCRIPT>
|
|
<form id="1111" name="SessionAttributeHandler" action="FrontController" method="POST">
|
|
<input type="hidden" name="command" value="SessionAttributeHandler">
|
|
</form>
|
|
</body>
|
|
</html>
|