-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlog out.php
More file actions
37 lines (30 loc) · 1011 Bytes
/
log out.php
File metadata and controls
37 lines (30 loc) · 1011 Bytes
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
<!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>LOGIN page</title>
<link rel="stylesheet" href="style.css">
<script src="valid.js"></script>
</head>
<body>
<div class="main">
<div class="navbar">
<div class="logo">
<img src="logo.png" alt="">
<div class="form" action="connect.php" method="post">
<h1>LOGIN</h1>
<input type="text" name="" placeholder="User name" id="username">
<input type="password" name="" placeholder="Password" id="pass">
<input type="checkbox" onclick="myfunction()">
<input type="submit" name="" value="Login" onclick="validate()">
<p class="para-2">
Not have an account? <a href="signup.html">Sign Up Here</a>
</p>
</div>
<div>
<p id="length"></p>
</div>
</body>
</html>