44 lines
1.3 KiB
PHP
44 lines
1.3 KiB
PHP
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<?php include _ADM_INC_PATH_ ."/header_inc.html" ?>
|
|
</head>
|
|
<body class="">
|
|
<div id="login">
|
|
<div id="login-box" class="border border-secondary">
|
|
<div id="login-info"></div>
|
|
<div id="login-form">
|
|
<form method="post" action="###" onclick="return false" class="w-75">
|
|
<div class="fld-block">
|
|
<label>Admin ID :</label>
|
|
<input type="text" name="member_id" id="member_id" class="form-control">
|
|
</div>
|
|
<div class="fld-block">
|
|
<label>Admin PW :</label>
|
|
<input type="text" name="member_pw" id="member_pw" class="form-control">
|
|
</div>
|
|
<div class="fld-block">
|
|
<button class="btn btn-primary btn-block">Log in</button>
|
|
</div>
|
|
<div class="fld-block">
|
|
<button class="btn btn-success btn-block">Join</button>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|
|
<?php include _ADM_INC_PATH_ ."/footer_inc.html" ?>
|
|
<style>
|
|
#login-info {
|
|
background-image: url("/include/img/kuls_ict.png");
|
|
background-repeat: no-repeat;
|
|
background-position: center center;
|
|
}
|
|
#login-form {
|
|
}
|
|
</style>
|