-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
121 lines (107 loc) · 3.08 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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Code Checker Example: BUN</title>
<style>
body {
font-family: Arial, sans-serif;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
background-color: #f0f0f0;
}
.container {
background-color: white;
padding: 20px;
border-radius: 10px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
max-width: 400px;
width: 100%;
}
.screen {
display: none;
}
.screen.active {
display: block;
}
input[type="text"] {
width: calc(100% - 20px);
padding: 8px;
margin-bottom: 20px;
border: 1px solid #ccc;
border-radius: 5px;
}
button {
background-color: black;
color: white;
border: none;
padding: 10px 20px;
border-radius: 5px;
cursor: pointer;
}
button:hover {
background-color: #eeeeee;
}
button#submit {
background-color: yellow;
}
.skip {
position: absolute;
left: -10000px;
top: auto;
width: 1px;
height: 1px;
overflow: hidden;
}
</style>
</head>
<body>
<header>
<a href="#main" class="skip">Skip to main content</a>
</header>
<main id="main">
<h1>Code Checker Example: BUN</h1>
<div class="container">
<div id="screen1" class="screen active">
<h2>What's the name of your pet?</h2>
<input type="text" id="petName" placeholder="Enter pet's name" />
<button onclick="goToNextScreen('screen2')">Next</button>
</div>
<div id="screen2" class="screen">
<h2>What's your favorite movie?</h2>
<input type="text" id="favMovie" placeholder="Enter favorite movie" />
<button onclick="goToNextScreen('screen3')" id="submit">
Submit
</button>
</div>
<div id="screen3" class="screen">
<h2>Summary</h2>
<p id="summary"></p>
<button onclick="restartSurvey()">Restart</button>
</div>
</div>
</main>
<script>
function goToNextScreen(nextScreenId) {
const currentScreen = document.querySelector(".screen.active");
currentScreen.classList.remove("active");
if (nextScreenId === "screen3") {
const petName = document.getElementById("petName").value;
const favMovie = document.getElementById("favMovie").value;
document.getElementById("summary").innerText =
`Pet's Name: ${petName}\nFavorite Movie: ${favMovie}`;
}
document.getElementById(nextScreenId).classList.add("active");
}
function restartSurvey() {
document.getElementById("petName").value = "";
document.getElementById("favMovie").value = "";
goToNextScreen("screen1");
}
</script>
</body>
</html>