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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>MediTime - Technical Support</title>
<style>
body { font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Helvetica Neue", sans-serif; max-width: 720px; margin: 40px auto; padding: 0 20px; color: #1d1d1f; line-height: 1.8; }
h1 { font-size: 28px; margin-bottom: 8px; }
h2 { font-size: 20px; margin-top: 32px; margin-bottom: 12px; }
p { margin-bottom: 16px; }
a { color: #0071e3; text-decoration: none; }
a:hover { text-decoration: underline; }
.faq { margin-bottom: 24px; }
.faq h3 { font-size: 16px; margin-bottom: 8px; }
</style>
</head>
<body>
<h1>MediTime Technical Support</h1>
<p>Welcome to MediTime. Below are answers to frequently asked questions.</p>

<h2>Frequently Asked Questions</h2>

<div class="faq">
<h3>1. How do I add a family member?</h3>
<p>Open the app and tap the Add Member button on the home screen. Enter the member name and you can set up individual medication plans for each member.</p>
</div>

<div class="faq">
<h3>2. How do I set up medication reminders?</h3>
<p>On the medication plan page, you can choose your reminder frequency (1, 2, or 3 times per day, or custom times). Once enabled, the system will send notifications at the scheduled times.</p>
</div>

<div class="faq">
<h3>3. What is Enhanced Reminder mode?</h3>
<p>When Enhanced Reminder mode is enabled, if the first reminder is not acknowledged, the system will remind you again after 5 minutes to ensure you never miss a dose.</p>
</div>

<div class="faq">
<h3>4. Where is my data stored?</h3>
<p>All data is stored locally on your device and is never uploaded to any server. You can back up your data as a PDF file using the export feature within the app.</p>
</div>

<div class="faq">
<h3>5. How do I export a medication report?</h3>
<p>On the statistics page, tap the Export button to generate a PDF medication report.</p>
</div>

<div class="faq">
<h3>6. Does the app require internet access?</h3>
<p>No. MediTime is a fully offline app. All features work without an internet connection.</p>
</div>

<h2>Contact Support</h2>
<p>If you encounter an issue not covered above, please contact us through the following method:</p>
<p>Feedback: Open the app, go to Settings, and tap Feedback and Help.</p>
</body>
</html>