-
Notifications
You must be signed in to change notification settings - Fork 1
/
body_1.php
45 lines (41 loc) · 1.47 KB
/
body_1.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
<?php
include ("db/connect.php");
include("login.php")
?>
<html>
<head>
<title>Login</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" type="text/css" href="admin_login/style.css">
</head>
<body>
<div id="form">
<h1>Login Form</h1>
<form name="form" action="login.php" onsubmit="return isvalid()" method="POST">
<label>Username: </label>
<input type="text" id="user" name="user"></br></br>
<label>Password: </label>
<input type="password" id="pass" name="pass"></br></br>
<input type="submit" id="btn" value="Login" name = "submit"/>
</form>
</div>
<script>
function isvalid(){
var user = document.form.user.value;
var pass = document.form.pass.value;
if(user.length=="" && pass.length==""){
alert(" Username and password field is empty!!!");
return false;
}
else if(user.length==""){
alert(" Username field is empty!!!");
return false;
}
else if(pass.length==""){
alert(" Password field is empty!!!");
return false;
}
}
</script>
</body>
</html>