-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfinalcell.php
More file actions
executable file
·61 lines (61 loc) · 1.1 KB
/
Copy pathfinalcell.php
File metadata and controls
executable file
·61 lines (61 loc) · 1.1 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
<html>
<?php
if(isset($_POST["ans"])){
if($_POST["ans"]=="hitchock"){
header("Location:finalcell2.php");
exit;
}
}
?>
<style>
body{
background-color:black;
background-image:url(images/fcell.jpg);
background-size:100% 100%;
background-repeat:no-repeat;
}
img{
z-index:-10;
}
#fintext
{margin-top:35%;
margin-left:38%;
height:62px;
width:500px;
font-size:50px;
background-color:#3B240B;
color:#F7D358;
text-shadow:5px 5px 3px 1px black;
}
#back{
background-color:black;
color:red;
font-family:chiller,Helvetica,Ariel,sans-seriff;
font-size:30px;
font-weight:20px;
width:100px;
height:40px;
border:0;
position:absolute;
top:2%;
}
input[type=submit]{
border-radius:5px;
width:100px;
height:40px;
background-color:black;
color:red;
font-family:chiller,Helvetica,Ariel,sans-seriff;
font-size:30px;
}
</style>
<body>
<form name="form1" action="finalcell.php" method="post">
<input type="text" id="fintext" value="Passkey" name="ans">
<input type="submit" name="Enter" value="Enter">
</form>
<form name="form2" action="fmaze2.php" method="post">
<input id="back" type="submit" value="back" name="back">
</form>
</body>
</html>