-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcreate_id.php
More file actions
86 lines (72 loc) · 2.4 KB
/
Copy pathcreate_id.php
File metadata and controls
86 lines (72 loc) · 2.4 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
<?php
if (!isset($_POST['username'])){
exit("<h1 style='
width:100%;
fontsize:25px;
text-align:center;
'>This page is not displayable </h1>");
}
$username=$_POST['username'];
$email = $_POST['email'];
$password= $_POST['password'];
$phonenumbr= $_POST['phonenum'];
$dob = $_POST['dob'];
$gender = $_POST['gender'];
?>
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="css/index.css">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
</head>
<body>
<div id="header">
<h1 style="font-size:xx-large;">LinkWave</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="utxt">
<h1> Now create a strong unique name for yourself</h1><br>
<p>This name is what others will use to identify you </p>
</div>
<div id="idarea" style="top: 400px !important;">
<br>
<!-- <img src="linkwave_logo.png" style="margin-left: 30%;
width: 300px;
height: auto;"><br> -->
<br>
<form action="" name="form2" id="loginform2" enctype="multipart/form-data" method="POST">
<div style="display: flex;
flex-wrap: nowrap;">
@<input type="text" name="uid" placeholder="Type your id here"> </div><br><br>
<button style="text-align: center;
font-size: 20px;
border-radius: 10px;
background-color: blue;
color:white;
margin-left: 43%;" id="sendit" onclick="submit2()">Create</button><br><br>
</form>
</div>
<input type="text" id="name2" value="<?php echo $username?>" hidden>
<input type="text" id="email2" value="<?php echo $email?>" hidden>
<input type="text" id="password2" value="<?php echo $password?>" hidden>
<input type="text" id="dob2" value="<?php echo $dob?>" hidden>
<input type="text" id="gender2" value="<?php echo $gender?>" hidden>
<input type="text" id="phnenbr2" value="<?php echo $phonenumbr?>" hidden>
<footer>
© LinkWave 2024 All Rights Reserved
</footer>
</body>
</html>