-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsign_in.php
48 lines (45 loc) · 1.78 KB
/
sign_in.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
<?php
include_once 'head.php';
?>
<link rel="stylesheet" href="css/sign in.css">
<!-- icons---- -->
<link rel="stylesheet" href="https://unicons.iconscout.com/release/v4.0.8/css/line.css">
<!-- ------- -->
<body>
<div class="mainpart">
<div class="containerss">
<div class="forms">
<div class="form login">
<span class="title">Login</span>
<form action="sign_in_connect.php" method="post">
<div class="input-field">
<input type="text" placeholder="Enter your email" name="uid">
<i class="uil uil-envelope icon"></i>
</div>
<p id="error5"></p>
<div class="input-field">
<input type="password" placeholder="Enter your password" name="pwd1">
<i class="uil uil-padlock icon"></i>
</div>
<p id="error6" ></p>
<!-- <div class="forgot">
<a href="#" class="text">Forgot password?</a>
</div> -->
<div class="input-field button">
<input type="submit" value="login now">
</div>
</form>
<div class="login-signup">
<span class="text">Not a member?
<a href="sign_up.php" class="text signup-text">signup now</a>
</span>
</div>
</div>
</div>
</div>
</div>
</body>
<script src="js/sign_in.js"></script>
<?php
include_once 'foot.php';
?>