-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
88 lines (74 loc) · 3.05 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
84
85
86
87
88
<?php
session_start();
if(isset($_SESSION['unique_id'])){
header("location: users.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>NewApp</title>
<link rel="icon" href="https://i.pinimg.com/736x/cb/f9/b1/cbf9b13467d15911a17db8c00dc3382e.jpg">
<link rel="stylesheet" href="./css/index.css">
<!-- <link rel="stylesheet" href="./css/style.css"> -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.2/css/all.min.css" />
</head>
<body>
<div class="leaves">
<div class="set">
<div><img src="./img/leaf_01.png" style="width: 100px; height: 100px;"></div>
<div><img src="./img/leaf_02.png" style="width: 100px; height: 100px;"></div>
<div><img src="./img/leaf_03.png" style="width: 100px; height: 100px;"></div>
<div><img src="./img/leaf_04.png" style="width: 100px; height: 100px;"></div>
<div><img src="./img/leaf_01.png" style="width: 100px; height: 100px;"></div>
<div><img src="./img/leaf_02.png" style="width: 100px; height: 100px;"></div>
<div><img src="./img/leaf_03.png" style="width: 100px; height: 100px;"></div>
<div><img src="./img/leaf_04.png" style="width: 100px; height: 100px;"></div>
</div>
</div>
<div class="sb">
<img src="./img/bg2.jpg" class="bg">
</div>
<div class="wrapper">
<section class="form signup">
<header>Sign In</header>
<form action="#" method="POST" enctype="multipart/form-data" autocomplete="off">
<div class="error-text"></div>
<div class="name-details">
<div class="field input" id="fi">
<label>First Name</label>
<input id="ph1" type="text" name="fname" placeholder="First name" required>
</div>
<div class="field input" id="fi">
<label>Last Name</label>
<input id="ph2" type="text" name="lname" placeholder="Last name" required>
</div>
</div>
<div class="field input" id="fi">
<label>Email Address</label>
<input id="ph3" type="text" name="email" placeholder="Enter your email" required>
</div>
<div class="field input" id="fip">
<label>Password</label>
<input id="ph4" type="password" name="password" placeholder="write your password" required>
<i class="fas fa-eye"></i>
</div>
<div class="field-image">
<label for="images" class="drop-container">
<input type="file" name="image" accept="image/x-png,image/gif,image/jpeg,image/jpg" required>
</label>
</div>
<div class="field button" id="sb">
<input type="submit" name="submit" value="Continue to Chat">
</div>
</form>
<div class="link">Already signed up? <a href="login.php">Login now</a></div>
</section>
</div>
<script src="javascript/pass-show-hide.js"></script>
<script src="javascript/signup.js"></script>
</body>
</html>