-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfeedback.php
More file actions
56 lines (48 loc) · 1.96 KB
/
feedback.php
File metadata and controls
56 lines (48 loc) · 1.96 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
<?php
include('../action.php');
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Feedback</title>
<!-- Font Icon -->
<link rel="stylesheet" href="fonts/material-icon/css/material-design-iconic-font.min.css">
<!-- Main css -->
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<div class="main">
<div class="container">
<div class="signup-content">
<form method="POST" id="feedback" class="signup-form">
<h2> Feedback </h2>
<div class="form-group">
<input type="text" class="form-input" name="name" id="name" placeholder="Your Name"/>
</div>
<div class="form-group">
<input type="text" class="form-input" name="uname" id="name" placeholder="Username"/>
</div>
<div class="form-group">
<input type="text" class="form-input" name="rating" id="name" placeholder="Star Rating (1-10)"/>
</div>
<div class="form-group">
<input type="text" class="form-input" name="phno" id="email" placeholder="Phone No."/>
</div>
<div class="form-group">
<input type="text" class="form-input" name="comm" id="email" placeholder="Comments"/>
</div>
<div class="form-group">
<input type="submit" name="submit" id="submit" class="form-submit submit" value="Submit"/>
</div>
</form>
</div>
</div>
</div>
<!-- JS -->
<script src="vendor/jquery/jquery.min.js"></script>
<script src="js/main.js"></script>
</body>
</html>