-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsms-opt-in.html
More file actions
135 lines (125 loc) · 5.21 KB
/
sms-opt-in.html
File metadata and controls
135 lines (125 loc) · 5.21 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>SMS Opt-In Policy - Predictions App</title>
<style>
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
line-height: 1.6;
max-width: 800px;
margin: 0 auto;
padding: 20px;
color: #333;
background-color: #f9f9f9;
}
.container {
background: white;
padding: 40px;
border-radius: 8px;
box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
h1 {
color: #2c3e50;
border-bottom: 3px solid #3498db;
padding-bottom: 10px;
}
h2 {
color: #34495e;
margin-top: 30px;
}
.important {
background: #e8f4f8;
border-left: 4px solid #3498db;
padding: 15px;
margin: 20px 0;
}
ul {
padding-left: 20px;
}
li {
margin: 10px 0;
}
.footer {
margin-top: 40px;
padding-top: 20px;
border-top: 1px solid #ddd;
font-size: 0.9em;
color: #666;
}
</style>
</head>
<body>
<div class="container">
<h1>SMS Opt-In Policy</h1>
<p><strong>Application:</strong> Predictions App (Sports Betting Pool)</p>
<p><strong>Last Updated:</strong> January 1, 2025</p>
<h2>Purpose</h2>
<p>
This application is a private sports predictions platform used by a closed group of friends
to manage friendly betting pools for college football games. SMS notifications are used to
send game reminders, results, and administrative messages to group members.
</p>
<h2>How Users Opt-In to SMS Notifications</h2>
<p>Users explicitly opt-in to receive SMS messages through the following process:</p>
<ol>
<li><strong>Account Creation:</strong> Users create an account within the application</li>
<li><strong>Profile Settings:</strong> Users navigate to their profile/settings page</li>
<li><strong>Enable SMS:</strong> Users toggle the "SMS Notifications" setting to ON</li>
<li><strong>Phone Number:</strong> Users provide a valid mobile phone number</li>
<li><strong>Confirmation:</strong> Users save their preferences, confirming their opt-in</li>
</ol>
<div class="important">
<strong>Important:</strong> SMS notifications are OFF by default. Users must explicitly enable
this feature and provide their phone number to receive any messages.
</div>
<h2>Types of SMS Messages Sent</h2>
<p>Users who opt-in will receive:</p>
<ul>
<li><strong>Prediction Reminders:</strong> Notifications before game time to submit predictions</li>
<li><strong>Game Results:</strong> Final scores and winner announcements</li>
<li><strong>Administrative Messages:</strong> Important group announcements from administrators</li>
</ul>
<h2>How to Opt-Out</h2>
<p>Users can opt-out of SMS notifications at any time using any of these methods:</p>
<ol>
<li><strong>Profile Settings:</strong> Log in and disable "SMS Notifications" in their profile</li>
<li><strong>Reply STOP:</strong> Reply "STOP" to any SMS message to unsubscribe immediately</li>
<li><strong>Contact Admin:</strong> Contact the group administrator to be removed from SMS notifications</li>
</ol>
<h2>Frequency</h2>
<p>
Message frequency varies based on the football season schedule. Users can expect:
</p>
<ul>
<li>Approximately 1-3 messages per week during active season</li>
<li>No messages during off-season</li>
<li>Occasional administrative messages as needed</li>
</ul>
<h2>Privacy</h2>
<p>
Phone numbers are stored securely and used only for the purposes described above.
We do not share phone numbers with third parties. This is a private application
for a closed group of participants.
</p>
<h2>Message and Data Rates</h2>
<p>
Standard message and data rates may apply based on the user's mobile carrier plan.
The application does not charge fees for SMS notifications.
</p>
<h2>Support</h2>
<p>
For questions about SMS notifications or to request removal from the messaging list,
users can contact the group administrator through the application or reply STOP to any message.
</p>
<div class="footer">
<p>
This SMS opt-in policy governs the use of SMS notifications within the Predictions App,
a private sports betting pool application. By enabling SMS notifications in your profile
settings, you consent to receive messages as described above.
</p>
</div>
</div>
</body>
</html>