-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
198 lines (170 loc) · 5.96 KB
/
index.html
File metadata and controls
198 lines (170 loc) · 5.96 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
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
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Support - CheckedInDays</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
line-height: 1.6;
color: #333;
background-color: #f8f9fa;
}
.container {
max-width: 800px;
margin: 0 auto;
padding: 20px;
background-color: white;
border-radius: 10px;
box-shadow: 0 2px 10px rgba(0,0,0,0.1);
margin-top: 40px;
}
.header {
text-align: center;
margin-bottom: 40px;
padding-bottom: 20px;
border-bottom: 2px solid #e9ecef;
}
.app-icon {
width: 80px;
height: 80px;
background: linear-gradient(45deg, #007AFF, #5856D6);
border-radius: 18px;
margin: 0 auto 20px;
display: flex;
align-items: center;
justify-content: center;
color: white;
font-size: 32px;
font-weight: bold;
}
h1 {
color: #1d1d1f;
margin-bottom: 10px;
font-size: 2.5em;
}
.subtitle {
color: #86868b;
font-size: 1.2em;
}
.section {
margin-bottom: 30px;
}
.section h2 {
color: #1d1d1f;
margin-bottom: 15px;
font-size: 1.5em;
}
.faq-item {
background-color: #f8f9fa;
border-radius: 8px;
padding: 20px;
margin-bottom: 15px;
}
.faq-question {
font-weight: 600;
color: #1d1d1f;
margin-bottom: 10px;
}
.faq-answer {
color: #515154;
}
.contact-info {
background: linear-gradient(45deg, #007AFF, #5856D6);
color: white;
padding: 25px;
border-radius: 10px;
text-align: center;
}
.contact-info h2 {
color: white;
margin-bottom: 15px;
}
.contact-method {
margin: 10px 0;
}
.contact-method a {
color: white;
text-decoration: none;
font-weight: 500;
}
.contact-method a:hover {
text-decoration: underline;
}
.footer {
text-align: center;
margin-top: 40px;
padding-top: 20px;
border-top: 1px solid #e9ecef;
color: #86868b;
}
@media (max-width: 600px) {
.container {
margin: 20px;
padding: 15px;
}
h1 {
font-size: 2em;
}
}
</style>
</head>
<body>
<div class="container">
<div class="header">
<div class="app-icon">📱</div>
<h1>CheckedInDays</h1>
<p class="subtitle">Support & Help Center</p>
</div>
<div class="section">
<h2>Frequently Asked Questions</h2>
<div class="faq-item">
<div class="faq-question">How do I get started with the app?</div>
<div class="faq-answer">Simply download the app from the App Store and follow the onboarding process. No account registration is required to start using basic features.</div>
</div>
<div class="faq-item">
<div class="faq-question">Is my data secure?</div>
<div class="faq-answer">Yes, we take privacy seriously. All your data is stored securely and we never share your personal information with third parties. See our Privacy Policy for more details.</div>
</div>
<!-- <div class="faq-item">
<div class="faq-question">How can I report a bug or issue?</div>
<div class="faq-answer">You can report bugs or issues by contacting us through the methods below. Please include your device model, iOS version, and a description of the issue.</div>
</div> -->
<div class="faq-item">
<div class="faq-question">Can I request new features?</div>
<div class="faq-answer">Absolutely! We love hearing from our users. Send us your feature requests and we'll consider them for future updates.</div>
</div>
</div>
<div class="section">
<div class="contact-info">
<h2>Get in Touch</h2>
<p>Need help? Have questions? We're here to help!</p>
<div class="contact-method">
<strong>Email:</strong> <a href="mailto:checkedindays.help@gmail.com">checkedindays.help@gmail.com</a>
</div>
<div class="contact-method">
<strong>Response Time:</strong> Within 24 hours
</div>
</div>
</div>
<div class="section">
<h2>Technical Requirements</h2>
<div class="faq-item">
<p><strong>iOS Version:</strong> Requires iOS 12.0 or later</p>
<p><strong>Compatibility:</strong> iPhone, iPad, and iPod touch</p>
<p><strong>Storage:</strong> Approximately 10MB of free space</p>
</div>
</div>
<div class="footer">
<p>© 2025 CheckedInDays. All rights reserved.</p>
<p>Version 1.0.0</p>
</div>
</div>
</body>
</html>