-
Notifications
You must be signed in to change notification settings - Fork 1
/
projcontacthtml.php
69 lines (52 loc) · 1.7 KB
/
projcontacthtml.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
<?php
session_start();
//$username=$_GET['id'];
if($_SESSION['hash']){
?>
<!DOCTYPE html>
<html lang="en">
<head>
<title>Login</title>
<link href="css/projlogin.css" type="text/css" rel="stylesheet">
<link href="css/projnavcommom.css" type="text/css" rel="stylesheet">
</head>
<body>
<?php
include 'projnavcomhtml.php';
?>
<div>
<div id="BODY">
<h1>Give us feedback!</h1>
<h1 style="color:#f26b31">Need Help?</h1>
<form method="post" action="projlogin.php">
<div id="form">
<div class="right">
<label>Problem :-</label>
<input type="text" id="problem" name="problem" class="form-control" required="required">
</div>
<div class="right">
<label>Define it :-</label>
<textarea type="text" id="feedback" name="feedback" class="form-control" cols="35" rows="10" required="required">
</textarea>
</div>
</div>
<div>
<input type="submit" id="submit" name="submit" class="form-control"
value="Submit" >
</div>
</form>
</div>
<div>
<footer>
<spam>@copyright_Pentestbob</spam>
</footer>
</div>
</div>
<!-- <script src="js/projlogin.js"></script>-->
</body>
</html>
<?php }
else{
header("Location:http://localhost/WTL project/signout.php");
}
?>