-
Notifications
You must be signed in to change notification settings - Fork 1
/
session-summary.html
53 lines (45 loc) · 1.35 KB
/
session-summary.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<title>Session Summary</title>
</head>
<body>
<header class="session-summary-header">
<div class="header-content">
<div class="logo-container">
<img src="imgs/KineticKonnect.png" alt="">
</div>
<h1>Your Session Summary</h1>
</div>
</header>
<div class="content-wrapper">
<div class="left-container">
<h2>Session Complete - Well Done!</h2>
<p>Your session data will be reviewed by your Therapist and you may be contacted with any personalized advice or adjustments to your routine.</p>
<div class="feedback-section">
<h3>Your Thoughts / Comments:</h3>
<textarea placeholder="Type Here...."></textarea>
</div>
</div>
<div class="right-container">
<aside class="recovery-tips">
<h3>Recovery Tips:</h3>
<ul>
<li>Remember to stretch after each session</li>
<li>Stay Hydrated</li>
<li>Call your Doctor if any exercises are causing extreme pain</li>
</ul>
</aside>
</div>
</div>
<footer class="footer">
<nav class="navigation">
<a href="profile.html" class="back-to-profile">Back to Profile</a>
</nav>
</footer>
</body>
</html>