-
Notifications
You must be signed in to change notification settings - Fork 2
/
login.php
36 lines (33 loc) · 1.09 KB
/
login.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
<?php
session_start();
if(isset($_SESSION['unique_id'])){
header("location: users.php");
}
?>
<?php include_once "header.php"; ?>
<body>
<div class="wrapper">
<section class="form login">
<header>Realtime Chat App</header>
<form action="#" method="POST" enctype="multipart/form-data" autocomplete="off">
<div class="error-text"></div>
<div class="field input">
<label>Email Address</label>
<input type="text" name="email" placeholder="Enter your email" required>
</div>
<div class="field input">
<label>Password</label>
<input type="password" name="password" placeholder="Enter your password" required>
<i class="fas fa-eye"></i>
</div>
<div class="field button">
<input type="submit" name="submit" value="Continue to Chat">
</div>
</form>
<div class="link">Not yet signed up? <a href="index.php">Signup now</a></div>
</section>
</div>
<script src="javascript/pass-show-hide.js"></script>
<script src="javascript/login.js"></script>
</body>
</html>