-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
45 lines (45 loc) · 1.27 KB
/
index.php
File metadata and controls
45 lines (45 loc) · 1.27 KB
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("connection.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">
<title>Document</title>
<link rel="stylesheet" type="text/css" href="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 is empty!!");
return false;
}
if (pass.length == "") {
alert("Password is empty!!!");
return false;
}
}
}
</script>
</body>
</html>