-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopeyes_survey.html
99 lines (84 loc) · 2.46 KB
/
popeyes_survey.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Popeyes Customer Survey</title>
<style>
body {
font-family: Arial, sans-serif;
background-image: url('https://github.com/Master120344/RealSurveys/blob/main/assets/popeyes.jpg?raw=true');
background-size: cover;
background-position: center;
margin: 0;
padding: 0;
color: #333;
height: 100vh;
overflow: hidden;
}
.container {
width: 90%;
max-width: 800px;
margin: 50px auto;
padding: 20px;
background: rgba(255, 255, 255, 0.9);
border-radius: 10px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.question {
margin-bottom: 20px;
}
.question h2 {
font-size: 24px;
color: #d9534f;
}
.question label {
display: block;
margin-bottom: 10px;
}
.question input[type="radio"],
.question input[type="checkbox"] {
margin-right: 10px;
}
.button-container {
text-align: center;
}
.button-container button {
background-color: #d9534f;
color: white;
border: none;
padding: 10px 20px;
font-size: 16px;
border-radius: 5px;
cursor: pointer;
margin: 10px;
transition: background-color 0.3s;
}
.button-container button:hover {
background-color: #c9302c;
}
.button-container .back-button {
background-color: #5bc0de;
}
.button-container .back-button:hover {
background-color: #31b0d5;
}
.message {
text-align: center;
font-size: 18px;
margin-top: 20px;
}
</style>
</head>
<body>
<div class="container">
<div id="questionContainer" class="question"></div>
<div class="button-container">
<button type="button" id="backButton" class="back-button" style="display:none;">Back</button>
<button type="button" id="nextButton">Next</button>
</div>
<div id="message" class="message"></div>
</div>
<script src="popeyes_survey.js"></script>
</body>
</html>