-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathjoin.php
More file actions
104 lines (93 loc) · 3.52 KB
/
join.php
File metadata and controls
104 lines (93 loc) · 3.52 KB
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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
<?php
require_once("sql_connect.php");
session_start();
if(isset($_SESSION["user_id"])){
if(isset($_SESSION["unique"])){
header("location:homepage.php");
exit;
}
}
?>
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="css/index.css">
<meta charset="UTF-8">
<meta name="description" content="Join Linkwave">
<meta name="keywords" content="Link, Chat, Location, Geolocation, Connect, Message, Wave">
<meta name="author" content="Eva victor">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="icon" type="image/x-icon" href="favicon.ico">
<title>LinkWave</title>
</head>
<body>
<div id="header">
<h1 style="font-size:xx-large;">LinkWave <a style="text-decoration: none;
float: right;
font-size: 20px;
color:white;
background-color: green;
border-radius: 5px;" href="index.php">Log in</a></h1>
<div id="errorarea">
<h2 id="errors"></h2>
<span style="float: right;
cursor: pointer;
position: relative;
top: -45px;
font-weight: bolder;
background-color: red;
border: 1px solid white;
width: 20px;
z-index: 5;" id="clserr">X</span>
</div>
</div>
<div id="loginarea">
<br>
<!-- <img src="linkwave_logo.png" style="margin-left: 30%;
width: 300px;
height: auto;"><br> -->
<br>
<form id="theform" name="form1" action="#" enctype="multipart/form-data" method="post">
<div id="entry1">
<input type="email" name="uemail" placeholder="email"><br><br>
<input type="password" name="psword" placeholder="Password"><br><br>
<input type="password" name="re_psword" placeholder=" Retype Password"><br><br>
<button style="text-align: center;
font-size: 20px;
border-radius: 10px;
background-color: blue;
color:white;
margin-left: 43%;" onclick="entrytwo()">Next</button><br><br>
</div>
<div id="entry2">
<input type="text" name="usern" placeholder="Username"><br><br>
<p style="color:white"> Phone number </p>
<input type="text" id="pnumber" name="phonenum" value="+" pattern="[+][0-9]{5,20}" title="Type your countrycode followed by your number!" required><br><br>
<p style="color:white"> Date of birth </p>
<input type="date" name="dob"><br><br>
<div style="display: flex;
color: white;
flex-wrap: wrap;
justify-content: space-evenly;
align-items: center;">
<p style="color:white;font-size: x-large;">Gender:</p>
Male<input type="radio" name="gender" value="Male">
Female<input type="radio" name="gender" value="Female">
Other<input type="radio" name="gender" value="Other"><br><br>
</div>
<button style="text-align: center;
font-size: 20px;
border-radius: 10px;
background-color: blue;
color:white;
margin-left: 43%;" id="mainsubmit">Join</button><br><br>
</div>
</form>
</div>
<footer>
© LinkWave 2024 All Rights Reserved
</footer>
<script src="js/join.js" defer></script>
</body>
</html>