-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathkyle_detritus.php
49 lines (37 loc) · 1.12 KB
/
kyle_detritus.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
<!DOCTYPE html>
<h2>Create an account</h2>
Email Address:<br/><input type="text" name="email" required <?php
if($_GET["emailvalue"] != null){
echo 'value =' . trim($_GET["emailvalue"], "/");
}
?> />
<?php
if($_GET["email"]==="invalid"){
echo "<br>"."Email format is invalid";
}
?> <br/><br/>
Password:<br/><input type="password" name="pwd" required <?php
if($_GET["passwordvalue"] != null){
echo 'value =' . trim($_GET["passwordvalue"], "/");
} ?> />
<?php
if($_GET["pwd"]==="invalid"){
echo "<br>"."This is a required field";
}
?> <br/><br/>
Confirm Password:<br/><input type="password" name="confirm" required <?php
if($_GET["confirmvalue"] != null){
echo 'value =' . trim($_GET["confpassvalue"], "/");
}
?> />
<?php
if($_GET["confirm"]==="required"){
echo "<br>"."This is a required field";
}
if($_GET["confirm"]==="invalid"){
echo "<br>"."Paswords do not match";
} ?> <br/><br/>
<button type="submit">Create Account</button>
<br/><br/>
<a href="http://10.250.94.60/~ubuntu/CRSFF/pages/login_page.php"><font size="2" color="white">Return to login</font></a>
</html>