-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathalignment_steps_2.html
More file actions
36 lines (32 loc) · 1.5 KB
/
alignment_steps_2.html
File metadata and controls
36 lines (32 loc) · 1.5 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
<!DOCTYPE html>
<html>
<head>
<meta name="viewport"
content="width=device-width, initial-scale=0.66667, viewport-fit=cover">
<meta name="mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-capable" content="yes">
<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=Inter" rel="stylesheet">
<link rel="stylesheet" href="./css/style.css">
<script src="./js/app_components.js"></script>
<title>alignment steps 2</title>
</head>
<body>
<div class="large_font" id="aligment_steps_title_2">When the camera turns on, position yourself within the box.</div>
<img src="img/green_alignment.png" id="green_alignment_img" width="512px" height="747px">
<img src="img/red_alignment.png" id="red_alignment_img" width="512px" height="747px">
<div class="flex_container_warning">
<img src="img/warning_sign.png" id="warning_img" width="41.8px" height="37px">
<div class="small_font" id="warning_text">Your exercises will automatically start once you are correctly positioned</div>
</div>
<div class="flex_container_buttons">
<div class="small_font" id="cancel_button" onclick="homePage()">
<p id="font_adjust">Cancel</p>
</div>
<button class="small_font" id="next_page_button" onclick="alignmentStep3()">
<p id="font_adjust">Next</p>
</button>
</div>
</body>
</html>