-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathindex.php
83 lines (60 loc) · 2.83 KB
/
index.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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
<?php include('server.php'); ?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title> Linkup</title>
<link rel = "icon" href = "images\logo2.png" type = "image/png">
<link rel="stylesheet" href="style.css">
<link href="https://fonts.googleapis.com/css?family=Lobster|Lobster+Two&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
</head>
<body>
<div class="container">
<div class="main">
<header>
<div id="logo-div">
<img src="images/logo.png" id="logo" alt=""> <span id="logo-text">Linkup</span>
</div>
<div id="nav-div" class="nav-div">
<p> <a href=""> Home</a>
<a href=""> About</a>
<a href="" class="active"> Login</a>
<a href="signUp.php" id="signup"> Signup</a>
<a href=""> Contact</a>
<a href="javascript:void(0);" class="icon" onclick="myFunction()">
<img src="images/mdi_menu.png" alt="">
</a>
</p>
</div>
</header>
<div class="content">
<div class="image-div">
<img src="images/happy-young-couple.jpg" alt="">
</div>
<div class="content-fields">
<h2>Your better half is just a click away </h2>
<p>Login now to meet up</p>
<form method="POST" action="index.php">
<?php include('errors.php') ; ?>
<label>Username</label><br>
<i class="fa fa-user"></i><input type="email" name="email" id="email" placeholder="username" required><span id="Evalid"></span><br><br>
<label>Password</label><br>
<i class="fa fa-lock"></i><input type="password" name="" id="password" placeholder="password" required><br>
<span class="right">Forgot Password?</span> <br><br>
<button id="submit" type="submit" name="login-user" value="Login">Login</button><br>
<span>Don't have an account? no problem Signup <a href="signUp.php">here</a>.</span>
</form>
</div>
</div>
<div class="clear"></div>
<footer>
<b>©Copyright 2019 Team-zeal</b>
</footer>
</div>
</div>
<script src="script.js"></script>
</body>
</html>