-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
53 lines (49 loc) · 1.91 KB
/
index.html
File metadata and controls
53 lines (49 loc) · 1.91 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Mentee Ratings</title>
</head>
<body onload="fetchMentees()" style="margin: 0; background-color:#ebebe0;">
<div class="container">
<div class="heading">
<h1 style="background-color:black;text-align:center; margin: 0;"><font color = red face = Algerian><u><i>Mentee Ratings</u></i></font></h1>
</div>
<div class="body" style="background-color: Black;text-align:center; margin: 0;"><font color = powderblue>
<h2 style="background-color: Black;text-align:center; margin: 0;">Rate Your Mentees<br></h2></font><br></div>
<div style="background-color: Black;text-align:center; margin: 10;"><font color = lime>
<form id="myForm" style="margin: 10;">
<div class="form-group">
<label>Name</label>
<input type="text" class="form-control" name="Name" placeholder="Enter Name" id="Name">
</div>
<br>
<div class="form-group">
<label>Email</label>
<input type="email" class="form-control" name="Email" placeholder="Enter Email" id="Email">
</div>
<br>
<div class="form-group">
<label>Rating</label>
<input type="number" class="form-control" name="Rating" value="3" id="Rating">
</div>
<br>
<div class="form-group">
<label>Comments</label>
<textarea name="Comments" class="form-control" placeholder="Comment on your Mentees here" id="Comments"></textarea>
</div>
<br>
<button type="submit">Submit</button>
<br><br>
</form>
</font></div>
<div class="display">
<h1 style="text-align:center; margin: 0;"><font color=#000066 face = Algerian><u><i>Stored Database</u></i></font></h1>
<div id="menteesResults">
</div>
</div>
</div> <!-- /container -->
<script src="main.js"></script>
</body>
</html>