-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
100 lines (94 loc) · 5.46 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
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
<!doctype html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<script src="https://cdn.anychart.com/releases/8.7.1/js/anychart-core.min.js"></script>
<script src="https://cdn.anychart.com/releases/8.7.1/js/anychart-radar.min.js"></script>
<style type="text/css">
#container {
width: 180px;
height: 180px;
margin-top: 30px;
padding: 10px;
}
</style>
<link href="index.css" rel="stylesheet">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.0-beta1/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-giJF6kkoqNQ00vy+HMDP7azOuL0xtbfIcaT9wjKHr8RbDVddVHyTfAAsrekwKmP1" crossorigin="anonymous">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<title>Video Grade Candidates</title>
</head>
<body class="body">
<div class="container">
<div class="row" id="top-row">
<div class="col">
<p style="font-size: 40px;margin-left: 240px; display: inline;"><u><b>Grade Candidate Video Answers</b></u></p>
<p style="font-size: 40px; display: inline; float: right;"><u>Apli.ai</u></p>
</div>
</div>
<div class="row">
<div class="col" id="part1">
<div id="candidate_info">
<img src="images/img1.jpg" width="150px" height="170px" class="center" style="border: 1px solid black; margin: 10px;">
<p style="font-size: 20px; text-align: center;"><b><u>Yash Khandelwal</u></b></p>
</div>
<div id="container">
</div>
</div>
<div class="col" id="part2">
<p style="font-size: 40px;">Questions</p>
<button class="bt" id="left" onclick="move_left()"><img src="images/leftbutton.jpg" width="70px" height=60px"></button>
<input type="hidden" id="qno" value="1">
<p style="font-size: 30px; display: inline;" id="curr-qno">1</p>
<button class="bt" id="right" onclick="move_right()"><img src="images/rightbutton.jpg" width="70px" height="60px"></button>
<ul class="list-group" id="videos">
<video class="video-play" width="500" height="300" id="video" controls>
<source src="videos/v1.mp4" type="video/mp4">
Your browser does not support the video tag.
</video>
</ul>
<table class="table" id="items">
</table>
</div>
<div class="col" id="part3">
<p style="font-size: 40px; text-align: center;">FeedBack</p>
<div class="star-rating" id="rate">
<p style="font-size: 30px; display: inline;">Submit Rating: </p>
<span class="fa fa-star-o" data-rating="1"></span>
<span class="fa fa-star-o" data-rating="2"></span>
<span class="fa fa-star-o" data-rating="3"></span>
<span class="fa fa-star-o" data-rating="4"></span>
<span class="fa fa-star-o" data-rating="5"></span>
<input type="hidden" name="whatever1" class="rating-value" value="">
</div>
<br><br>
<div class="form-group" id="comment-box">
<label for="exampleFormControlTextarea1">
<p style="font-size: 30px; ">Any Comments? </p>
</label>
<textarea class="form-control" id="comment" rows="3"></textarea>
</div>
<br>
<button type="submit" onclick="submitcomment()" class="btn btn-dark" id="comment-save-button">Save Comment</button>
<span class="alert alert-success" role="alert" id="noti" style="float: right;" hidden>
Saved!
</span>
<div id="feedback-done" hidden>
<p style="font-size: 30px; text-align: center;"><u>Thanks For Your Feedback. Press Left Button to go to Questions.</u></p>
</div>
</div>
</div>
</div>
<!-- Optional JavaScript; choose one of the two! -->
<!-- Option 1: Bootstrap Bundle with Popper -->
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.0-beta1/dist/js/bootstrap.bundle.min.js" integrity="sha384-ygbV9kiqUc6oa4msXn9868pTtWMgiQaeYH7/t7LECLbyPA2x65Kgf80OJFdroafW" crossorigin="anonymous"></script>
<!-- Option 2: Separate Popper and Bootstrap JS -->
<!--
<script src="https://cdn.jsdelivr.net/npm/@popperjs/core@2.5.4/dist/umd/popper.min.js" integrity="sha384-q2kxQ16AaE6UbzuKqyBE9/u/KzioAlnx2maXQHiDX9d4/zp8Ok3f+M7DPm+Ib6IU" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.0-beta1/dist/js/bootstrap.min.js" integrity="sha384-pQQkAEnwaBkjpqZ8RU1fF1AKtTcHJwFl3pblpTlHXybJjHpMYo79HY3hIi4NKxyj" crossorigin="anonymous"></script>
-->
<script src="https://code.jquery.com/jquery-3.5.1.js" integrity="sha256-QWo7LDvxbWT2tbbQ97B53yJnYU3WhH/C8ycbRAkjPDc=" crossorigin="anonymous"></script>
<script type="text/javascript" src="index.js"></script>
</body>
</html>