How do I create an account?
To create an account, download the app from the App Store and follow the on-screen instructions to sign up using your email address and password.
How can I reset my password?
If you have forgotten your password, you can reset it by clicking on "Forgot Password" on the login screen. You will receive an email with instructions to reset your password.
How can I update my account information?
You can update your account information by logging into the app, going to your profile page, and selecting "Account Settings". Here, you can change your email address, password, and other personal details.
How do I cancel my subscription?
You can cancel your subscription by going to "Subscriptions" in your Apple ID settings. Here, you can choose to cancel or change your subscription.
How do I delete my account?
If you wish to delete your account, you can do so from the account settings in the app. Please note that this will permanently delete all your data.
How do I contact support?
If you have further questions or need assistance, you can contact our support team at support@ai-studymate.dk. We will get back to you as soon as possible.
import SwiftUI
struct TermsOfUseView: View {
var body: some View {
ScrollView {
VStack {
VStack(spacing: 20) {
Text("Terms of Use")
.font(Font.custom("SF Pro Display", size: 20).weight(.bold))
.foregroundColor(Color(red: 0.19, green: 0.20, blue: 0.19))
.padding(.top, 20)
Text("""
1. Introduction
Welcome to AI Studymate ("App"). By using the App, you agree to comply with and be bound by these Terms of Use ("Terms"). If you do not agree to these Terms, you must not use the App.
2. Services
The App offers personalized AI study assistance and learning resources. The services are designed to enhance your learning experience and adapt to your educational needs.
3. User Registration
To use certain features of the App, you must create an account. You must provide accurate and complete information during registration and update it as necessary. You are responsible for maintaining the security of your password and for all activities that occur under your account.
4. Use of the App
You agree to use the App in accordance with all applicable laws and regulations. You must not:
Use the App for illegal purposes.
Disrupt or interfere with the App's functionality.
Use the App to distribute harmful software or viruses.
Infringe on the rights of others, including intellectual property rights.
5. Privacy
Your use of the App is also subject to our Privacy Policy, which describes how we collect, use, and protect your personal information.
6. Intellectual Property Rights
All rights, titles, and interests in and to the App, including content, features, and functionality, belong to AI Studymate or its licensors. You are granted a limited, non-exclusive, non-transferable license to use the App in accordance with these Terms.
7. Disclaimer of Warranties
The App is provided "as is" and "as available". We disclaim all warranties of any kind, express or implied, including but not limited to implied warranties of merchantability, fitness for a particular purpose, and non-infringement.
8. Limitation of Liability
To the extent permitted by law, AI Studymate will not be liable for any indirect, incidental, special, consequential, or punitive damages, including loss of data, revenue, or profit, arising out of or related to your use of the App.
9. Changes to the Terms
We reserve the right to modify these Terms at any time. We will notify you of significant changes by sending a notice to the email address you have provided to us or by placing a prominent notice in the App. Your continued use of the App after such changes constitutes your acceptance of the new Terms.
10. Contact Information
If you have any questions about these Terms, please contact us at:
Email: support@ai-studymate.dk
""")
.font(Font.custom("SF Pro Display", size: 14))
.foregroundColor(Color(red: 0.50, green: 0.52, blue: 0.51))
.multilineTextAlignment(.leading)
.padding()
}
.background(Color.white)
.cornerRadius(12)
.shadow(color: Color.black.opacity(0.04), radius: 10, y: 5)
.padding(.horizontal, 10)
.padding(.top, 40)
Spacer()
}
}
.padding(.horizontal, 7)
.navigationBarTitle("", displayMode: .inline)
.toolbar {
ToolbarItem(placement: .principal) {
Text("Terms of Use")
.font(.system(size: 16).weight(.semibold))
.tracking(1)
.foregroundColor(Color(red: 0.19, green: 0.20, blue: 0.19))
}
}
.background(Color("FAFAFA").edgesIgnoringSafeArea(.all))
}
}
struct TermsOfUseView_Previews: PreviewProvider {
static var previews: some View {
TermsOfUseView()
}
}