forked from mlsacbvp/review-me
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
59 lines (55 loc) · 2.17 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<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>Review Form</title>
<link rel="icon" href="/images/favicon.ico" type="image/x-icon">
<link rel="stylesheet" href="style/index.css">
<script src="config/constants.js"></script>
<script src="scripts/api-client.js"></script>
<script src="scripts/index.js"></script>
</head>
<body>
<div class="login-box" id="box">
<img src="../images/logo.png" alt="MLSC Logo" class="logo">
<h2 id="event_name"></h2>
<p id="event_desc"></p>
<form method="post">
<!-- Please dont Change the input `name` tag naming convention -->
<div class="user-box">
<input id="name" type="text" name="name" required>
<label>Name</label>
</div>
<div class="user-box">
<input id="email" type="text" name="email" required>
<label>Email <span id="warn"></span></label>
</div>
<div class="user-box">
<input id="college" type="text" name="college" required>
<label>College Name</label>
</div>
<div class="user-box">
<input id="rating" type="range" name="rating" min="0" max="5" default="3" required>
<label>Rate The Event</label>
</div>
<p class="salaah">Review/Suggestions:</p>
<div class="text_area">
<textarea id="review" name = "review"
placeholder="Tell us how much you liked the event and what all things can we improvise for the next event! "
style="resize: none;" name="" id="" cols="50" rows="10"></textarea>
</div>
<br>
<div class="buttoonn"><button type="button" id="submit">
<span></span>
<span></span>
<span></span>
<span></span>
Submit
</button>
</div>
</form>
</div>
</body>
</html>