-
Notifications
You must be signed in to change notification settings - Fork 0
/
feedback.html
122 lines (115 loc) · 5.03 KB
/
feedback.html
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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial_scale=1.0">
<title>Feedback Form</title>
<link rel="stylesheet" href="./feedback.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Poppins">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="icon" href="./unnamed.png">
<script src="https://code.jquery.com/jquery-3.6.1.js"
integrity="sha256-3zlB5s2uwoUzrXK3BT7AX3FyvojsraNFxCc2vC/7pNI=" crossorigin="anonymous"></script>
<script>
function SubForm() {
$.ajax({
url: 'https://api.apispreadsheets.com/data/qBERXRDO3oLyqZGm/',
type: 'post',
data: $("#form").serializeArray(),
success: function () {
alert("Form Data Submitted :)")
document.getElementById("form").reset();
},
error: function () {
alert("There was an error :(")
}
});
}
</script>
</head>
<body class="body">
<div class="main">
<div class="row">
<img src="./sreenidhi-logo.png" alt="" class="img1">
<img src="./NAAC-A-grade-logo.jpg" alt="" class="img2">
<img src="./National_Board_of_Accreditation.svg.png" alt="" class="img3">
<img src="./UGC.jpg" alt="" class="img4">
<button class="contact" id="btn" onclick="window.location.href ='./contact.html';">Contact us</button>
<button class="Feedback" id="btn">Feedback form</button>
<button class="Feedback" id="btn">Alumni Portal</button>
<button class="Feedback" id="btn">Login</button>
</div>
<nav class="container">
<ul>
<li><a href="./index.html">Home</a></li>
<li><a href="./index.html">About Us</a></li>
<li><a href="./index.html">Departments</a></li>
<li><a href="./index.html">Research & Innovation</a></li>
<li><a href="./index.html">Infrastructure</a></li>
<li><a href="./index.html">Placements</a></li>
<li><a href="./query.html">IQAC</a></li>
<li><a href="">Students</a></li>
<li><a href="">Rankings</a></li>
<li><a href="./article.html">Articles</a></li>
</ul>
</nav>
</div>
<div class="form">
<table>
<form action="" method="post" name="google-sheet" id="form">
<h1>Feedback form</h1>
<hr>
<tr>
<td colspan="2">
<label>
Sreenidhi Institute of Science and Technology
</label>
</td>
</tr>
<tr>
<td>
<label for="Fullname">Fullname</label><br>
<input type="text" name="Fullname" placeholder=" Your Name" class="txt">
</td>
<td>
<label for="Email">Email</label><br>
<input type="text" name="Email" placeholder="Your Email" class="txt">
</td>
</tr>
<tr>
<td>
<label for="Phone Number">Phone Number</label><br>
<input type="text" name="Phone Number" placeholder="Your Phone number" class="txt">
</td>
</tr>
<tr>
<td colspan="2">
<label for="Message">Message</label>
<br>
<textarea class="txtarea" name="Message" placeholder="Your Message"></textarea>
</td>
</tr>
</form>
<button type="submit" class="btn" name="submit" onclick="SubForm()" id="subbtn">Submit</button>
<button type="reset" class="btn" onclick="Reset()" id="subbtn">Reset</button></td>
</table>
</div>
<div class="footer">
<ul>
<li><a href="">Home</a></li>
<li><a href="">FAQs</a></li>
<li><a href="">Sitemap</a></li>
<li><a href="">Contact us</a></li>
</ul>
<i class="fa fa-facebook"
onclick="window.location.href = 'https://www.facebook.com/SNIST.SreenidhiEducationalGroup';"></i>
<i class="fa fa-linkedin"
onclick="window.location.href = 'https://www.linkedin.com/school/sreenidhi-snist/?originalSubdomain=in';"></i>
<i class="fa fa-youtube" onclick="window.location.href = 'https://www.youtube.com/hashtag/snist';"></i>
<i class="fa fa-instagram"
onclick="window.location.href = 'https://www.instagram.com/snist_sreenidhi/?hl=en';"></i>
<br><br>
</div>
</body>
</html>