-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
65 lines (58 loc) · 2.51 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- displays site properly based on user's device -->
<link rel="icon" type="image/png" sizes="32x32" href="./public/images/favicon-32x32.png">
<title>Interactive rating component</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Overpass:wght@400;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="./public/css/styles.css">
</head>
<body>
<main>
<div id="demo" class="card">
<header class="padding-block-100">
<img class="star" src="./public/images/icon-star.svg" alt="">
<h1 class="fw-700"> How did we do? </h1>
</header>
<div>
<p class="intro fw-400">
Please let us know how we did with your support request. All feedback is appreciated
to help us improve our offering!
</p>
<form id="rating" class="padding-block-600" method="post" action="#">
<!-- <label for="1">1</label> -->
<input type="radio" name="rate" id="1" value="1" aria-label="first">
<input type="radio" name="rate" id="2" value="2" aria-label="second">
<!-- <label for="2">2</label> -->
<input type="radio" name="rate" id="3" value="3" aria-label="third">
<!-- <label for="3">3</label> -->
<input type="radio" name="rate" id="4" value="4" aria-label="forth">
<!-- <label for="4">4</label> -->
<input type="radio" name="rate" id="5" value="5" aria-label="fifth">
<!-- <label for="5">5</label> -->
</form>
</div>
<footer>
<button class="fw-700" form="rating" type="submit"
onclick="getValue()"> Submit</button>
</footer>
</div>
<div onclick="resetStyle()" id="result_card" class="card centered">
<header>
<img class="padding-block-600" src="./public/images/illustration-thank-you.svg" alt="">
<p class="caption text-light-orange padding-block-200"> You selected <span id="result"></span> out of 5</p>
</header>
<div>
<h1>Thank you!</h1>
<p class="desc padding-block-200"> We appreciate you taking the time to give a rating. If you ever need more support,
don’t hesitate to get in touch!</p>
</div>
</div>
</main>
<script src="./public/js/main.js"></script>
</body>
</html>